
// Printable view of current page
var popWin = null;
function printpage() 
{
	if (popWin && !popWin.closed) popWin.close();
	var sFeatures = "top=0,left=0,width=" +screen.width-50 + ",height=" + screen.height-100 + ",scrollbars=1,toolbars=1,resizable=1";

	var content = document.getElementById("pagecontent")

	if (content) { 
	    popWin = window.open("", "", sFeatures);
		popWin.document.open(); 
		popWin.document.write("<html>");
		popWin.document.write("<head>");
		popWin.document.write("<LINK href=include/Styles.css rel=Stylesheet>");
		popWin.document.write("<title>Printable view of page</title>");
		popWin.document.write("<script language='JavaScript'>");
		popWin.document.write("function printwin() {");
		popWin.document.write("idprintline.style.visibility = 'hidden';");
		popWin.document.write("window.print();");
		popWin.document.write("idprintline.style.visibility = 'visible';");
		popWin.document.write("}");
		popWin.document.write("</script>");
		popWin.document.write("</head>");
		popWin.document.write("<body style='margin: 5px'>"); 
		popWin.document.write("<table width=100% cellpadding=0 id=idprintline cellspacing=0><tr><td align=right>");
		popWin.document.write("<input type=button value='Send to Printer' onClick='printwin();'>");
		popWin.document.write("</td></tr></table>");
		popWin.document.write(content.innerHTML);          
		popWin.document.write("</body>");
		popWin.document.write("</html>"); 
		popWin.document.close(); 
		popWin.focus();
	}
	else {
		window.print();
	}
}


