function PrintContent(ElementID)
{
	var Input;
	var Display_Setting; 
	var Print_Content;
	var Print_Document;
	
	Input = confirm('Do you wish to send this page to the printer?\n\nClick OK to Print or CANCEL to Quit.');
	
	if (Input == true)
	{
		Display_Setting += "toolbar=yes,location=no,directories=yes,menubar=yes,"; 
		Display_Setting +="scrollbars=yes,width=650, height=600, left=100, top=25"; 

		Print_Content = document.getElementById(ElementID).innerHTML;

		Print_Document = window.open("","",Display_Setting); 

		Print_Document.document.open(); 
		Print_Document.document.write('<html><head><title>Bellow Weld (Pty) Ltd</title>'); 
		Print_Document.document.write('<link rel="stylesheet" type="text/css" href="./App_Themes/Default/StyleSheet.css">');
		Print_Document.document.write('<link rel="stylesheet" type="text/css" href="./Styles/Home/Data.css">');
		Print_Document.document.write('<link rel="stylesheet" type="text/css" href="./Styles/Content/Elements.css">');
		Print_Document.document.write('<link rel="stylesheet" type="text/css" href="./Styles/Content/Header.css">');
		Print_Document.document.write('<link rel="stylesheet" type="text/css" href="./Styles/Content/Data.css">');
		Print_Document.document.write('<link rel="stylesheet" type="text/css" href="./Styles/Content/Control.css">');
		Print_Document.document.write('</head><body>'); 
		Print_Document.document.write(Print_Content);          
		Print_Document.document.write('</body></html>'); 
		Print_Document.document.close();
		
		Print_Document.focus();
		Print_Document.print();
		Print_Document.close();
	}
}

