function docopen(filename){
new_window=window.open(filename,"_blank","Toolbar=0, Directories=0, Status=0, Menubar=0, Scrollbar=0, Resizable=0, Copyhistory=1, Width=660, Height=500");
/*new_window.document.open("text/html");
new_window.document.writeln("<HTML><HEAD>");
new_window.document.writeln("<style type=text/css>");
new_window.document.writeln(" {font-size: 11px; font-family:'Arial'; color: #000088}");
new_window.document.writeln("H1 {font-size:23px; font-family:'Arial'; color: #000080}");
new_window.document.writeln("center,br {font-size: 14px; font-family:'Arial'; color: #000088}");
new_window.document.writeln("a:hover {color: #93842E}");
new_window.document.writeln("</style>");
new_window.document.writeln("</HEAD>");
new_window.document.writeln("<BODY BgColor= #F9F4DC>");
new_window.document.writeln("<center>");
new_window.document.writeln("<img src="+filename+">");
new_window.document.writeln("</center>");
new_window.document.write("</BODY></HTML>");*/
new_window.document.close();
}
