

var newwindow
function popitup(url , title) {
if (newwindow && !newwindow.closed) 
{ newwindow.focus(); newwindow.document.clear() } 
else 
{ newwindow=window.open('','','width=700,height=600,left=100,top=200,scrollbars=no,status=no,location=no,menubar=no,resizeable=no') }
newwindow.document.writeln('<html> <head> <title>' + title + '<\/title> <\/head> <body bgcolor=\"#ffffff\"> <center>');
newwindow.document.writeln('<br><br><a href=# onClick=javascript:window.print()><font face=tahoma size=2 color=#6A7165><b>Print Page</b></font></a>');
newwindow.document.writeln('<img src=' + url + '>');
newwindow.document.writeln('<br><br><a href=# onclick=window.close()><font face=tahoma size=2 color=#6A7165><b>Close Window</b></font></a>');
newwindow.document.writeln('</td><\/center> <\/body> <\/html>');
newwindow.document.close();


}

function tidy()
{
if (newwindow && !newwindow.closed) { newwindow.close(); } 
}



