// Photoalbum script v 1.0//
// language=JAVASCRIPT1.1//
<!--

function Photo( id, name, image, width, height )

{

windowLeaving=window.open("",id,"scrollbars=no,toolbar=no,location=no,directories=no,status=no,width="+width+",height="+height+"" );

windowLeaving.document.open();

windowLeaving.document.writeln("<html><head><title>"+name+"</title>"); 

windowLeaving.document.writeln("<body onload='window.focus();' onblur='self.close();' bgcolor='black' text=white  topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'>");

windowLeaving.document.writeln('<img src='+ image +' border=0>');

windowLeaving.document.writeln('</head></html>');

windowLeaving.document.close();

}

//-->

