<!--
function docopen(filename){
newwindow=window.open("","big","scrollbars=0,status=0,toolbar=0,menubar=0");
newwindow.document.open("text/html");
newwindow.document.writeln("<html><head></head><body leftmargin=0 topmargin=0  scroll=no>");
newwindow.document.writeln('<img src='+filename+' onClick="window.close();" style=CURSOR:hand; alt="Close" onload="resizeTo(width+9,height+57);">');
newwindow.document.writeln("</body></html>");
newwindow.document.close();
window.newwindow.focus();
}
//-->

