var newwindow = ''
var wheight = 0
var wwidth = 0
function popitup(url , title, iwidth, iheight) {
if (wheight!=iheight || wwidth!=iwidth){tidy()};
if (newwindow.location && !newwindow.closed && wwidth==iwidth && wheight==iheight) 
{ newwindow.focus(); newwindow.document.clear() } 
else 
{ 
pwidth=iwidth+20;
pheight=iheight+20;
newwindow=window.open('','','width=' + pwidth + ',height=' + pheight + ',resizable=0');
wheight=iheight;
wwidth=iwidth;
}
newwindow.document.writeln('<html> <head> <title>' + title + '<\/title> <\/head> <body bgcolor=\"white\"> <center>');
newwindow.document.writeln('<img src=' + url + '>');
newwindow.document.writeln('<\/center> <\/body> <\/html>');
newwindow.document.close();
}

function tidy()
{
if (newwindow.location && !newwindow.closed) { newwindow.close(); } 
}