var newwindow;
function popitup(url, title, iwidth, iheight) {

if ( !newwindow || newwindow.closed ) {
newwindow=window.open('','htmlname','width=' + iwidth +',height=' +iheight + ',resizable=0,top=10,left=10');
}

newwindow.document.clear();
newwindow.focus();
newwindow.document.writeln('<html> <head> <title>' + title + '<\/title> <\/head> <body marginheight=\"0\" marginwidth=\"0\" bottommargin=\"0\" topmargin=\"0\" leftmargin=\"0\" rightmargin=\"0\" bgcolor= \"#FFFFFF\">');
newwindow.document.writeln('<img src=' + url + '>');
newwindow.document.writeln('<\/body> <\/html>');
newwindow.document.close();
newwindow.focus();
}

function tidy() {
if (newwindow && !newwindow.closed) { newwindow.close(); }
}

