<!--
function prnt(wht)
{

pop = window.open('','p','toolbar=no,menubar=no,width=400,height=100');
pop.document.open();
pop.document.write("<html><head><title>Print News</title></head><body onload='print()'><font face=Arial size=2>Printing News...<br><br><b><a href=javascript:top.close()>Close</a></b><br><br><br><br><br></font><br>---------------------------------------------------------<br><br><pre>");
pop.document.write(wht);
pop.document.write("</pre><br>---------------------------------------------------------</body></html>");
pop.document.close();
}
//-->