var newwindow;

function popup(name, title, size)
{

if (size=='wide') {
 width=640;
 height=480;
}
if (size=='tall') {
 width=480;
 height=640;
}

settings=
"toolbar=no,location=no,directories=no,"+
"status=no,menubar=no,scrollbars=no,"+
"resizable=no,width="+width+",height="+height;




newwindow = window.open('','popup',settings);
newwindow.document.clear();
newwindow.focus();
newwindow.document.writeln('<html>\n<head>\n<title>' + title + '<\/title>\n<style type=\"text\/css\">\nbody{margin:0;padding:0;background:#555;}\n<\/style>\n<\/head>\n<body onblur=\"window.close()\">');
newwindow.document.writeln('<div><img src=\"'+name+'\" width=\"'+width+'\" height=\"'+height+'\" alt=\"\" \/><\/div>');
newwindow.document.writeln('<\/body>\n<\/html>');
newwindow.document.close();
newwindow.focus();

}


