function PrintFriendlyPage(ctrlID, contentWidth, sitePath)
{
	var content = document.getElementById(ctrlID);
	var newWindow = window.open(sitePath + 'print.aspx','','scrollbars=yes,toolbar=no,titlebar=no;statusbar=yes,width=700');
	newWindow.opener = self;
			
	//newWindow.document.write("<html><head><title></title>");
	//newWindow.document.write("<link href='" + sitePath + "Styles/Print.css' type='text/css' rel='stylesheet' />");
	//newWindow.document.write("<style type='text/css'> body { background-image: none !important; } </style>");
	//newWindow.document.write("</head><body>");
	//newWindow.document.write("<table align='center' width='" + contentWidth + "px'><tr><td>");
	//newWindow.document.write(content.innerHTML);
	//newWindow.document.write("</td></tr></table>");
	//newWindow.document.write("</body></html>");
	//newWindow.document.getElementById("myPrint").innerHTML = content.innerHTML;
	newWindow.focus();
	
}

