function PrintDoc()
{var a = window.open('','','');
a.document.open("text/html");
a.document.write('<html><head><link rel="stylesheet" href="http://www.orientalescape.com/code/css/main.css" /><style type="text/css"></style></head><body style=padding:15px;background-image:none;background-color:#FFFFFF;">');
a.document.write(document.getElementById('WebCentent').innerHTML);
a.document.write('</body></html>');
a.document.close();
a.print();}