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>"+"<body topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'>"+'<img src="/etc/' + image + '" border=0>'+'</head></html>');
windowLeaving.document.close();
return false;
}
