function QuickPrint()
			{
				var printContainer = document.getElementById("PrintArea_Content");
				//window.print();
				var printWindow = window.open("/Pages/QuickPrintHome.htm");
				printWindow.document.write("<html><head><link rel=\"stylesheet\" type=\"text/css\" href=\"/Includes/StyleSheet.css\" />");
				printWindow.document.write("</head><body><div><div id=\"Interior_Content\">");
				printWindow.document.write(printContainer.innerHTML);
				printWindow.document.write("</div></div></body></html>");
			}
			
