function PrintMe()
{
	if (window.navigator.userAgent.indexOf("MSIE ")!=-1 && navigator.appVersion.substr(0, 1) >= 4)
	{
		var oWnd = window;
		var oDoc = oWnd.document;
		var strLoc = document.getElementById("divPrinting").innerHTML;
		if( oWnd.printHiddenFrame == null){
			oDoc.body.insertAdjacentHTML("beforeEnd", "<iframe name='printHiddenFrame' width='0' height='0'></iframe>");
			framedoc = oWnd.printHiddenFrame.document;
			framedoc.open();
			framedoc.write(
				"<HTML><HEAD><META http-equiv='Content-Type' content='text/html; charset=utf-8'><LINK href='styleprint.css' rel='stylesheet' type='text/css'></HEAD>" +
				"<BODY dir=ltr onload='focus();print();' rows=\"100%\">"+
				"<img src='Images/PrintLogo.jpg' width='100%' border='0'><BR><BR>"+ strLoc + "<BR>" +
				"<img src='Images/ContactLogo.jpg' width='100%' border='0'>" +
				"</BODY></HTML>");
			framedoc.close();
		}
		else{
			oWnd.printHiddenFrame.focus();
			oWnd.printHiddenFrame.print();
		}
	}
	else
	{
		str=document.getElementById("divPrinting").innerHTML;
		newwin=window.open('','printwin','left=100,top=100,width=400,height=400');
		newwin.document.write("<HTML><HEAD><META http-equiv='Content-Type' content='text/html; charset=utf-8'><LINK href='styleprint.css' rel='stylesheet' type='text/css'>");
		newwin.document.write('<TITLE>Print Page</TITLE>');
		newwin.document.write('<script>\n');
		newwin.document.write('function chkstate(){\n');
		newwin.document.write('if(document.readyState=="complete"){\n');
		newwin.document.write('window.close()\n');
		newwin.document.write('}\n');
		newwin.document.write('else{\n');
		newwin.document.write('setTimeout("chkstate()",2000)\n');
		newwin.document.write('}\n');
		newwin.document.write('}\n');
		newwin.document.write('function print_win(){\n');
		newwin.document.write('window.focus();\n');
		newwin.document.write('window.print();\n');
		newwin.document.write('chkstate();\n');
		newwin.document.write('}\n');
		newwin.document.write('<\/script>\n');
		newwin.document.write('</HEAD>\n');
		newwin.document.write('<BODY onload="print_win()">\n');
		newwin.document.write("<img src='Images/PrintLogo.jpg' hight='188' width='950' border='0'><BR><BR>"+str+"<BR>" + "<img src='Images/ContactLogo.jpg' hight='140' width='950' border='0'>");
		newwin.document.write('</BODY>\n');
		newwin.document.write('</HTML>\n');
		newwin.document.close();
	}
}
