﻿// JScript File
function PrintThisPage() 
{ 
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
       sOption+="scrollbars=yes,width=750,height=600,left=100,top=25"; 

   var sWinHTML = document.getElementById('contentstart').innerHTML; 
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
       winprint.document.write('<html><LINK href=media/ustglobal.css rel=Stylesheet><body><table width=100% border=0 align=center cellpadding=0 cellspacing=0><tr valign=middle><td width=15% align=center><img src=Images/Logo1.jpg alt=UST border=0></td></tr><tr><td valign="top" background="Images/hrlines.gif" height="1"><img src="Images/hrlines.gif" width="2" height="1" alt=""></td></tr></table>'); 
       winprint.document.write(sWinHTML);          
       winprint.document.write('<table width=100% border=0 align=center cellpadding=0 cellspacing=0><tr><td height=30 align=center class=copyrights>&copy; UST Global, www.ust-global.com</td></tr></table></body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}




