﻿function PrintIt()
{ var ua=navigator.userAgent;
var ie=/MSIE/.test(ua);
stext='';
stext=document.getElementById("print-area").innerHTML;
wnd=window.open("", "tinyWindow", 'statusbar,toolbar=0,width=800,height=600');
wnd.document.write("<html><head><head><body>");
wnd.document.write(stext);
if (!ie){
wnd.document.write("<body></html>");
wnd.print();
}else{
wnd.document.write("<script>window.onload=self.print();<\/script></body></html>");
wnd.location.reload()
}
}