
function makeWin(name, photo,wide,high) 
{ 
var text = "<HEAD><link rel=stylesheet type=\"text/css\" href=\"3d01.css\"></HEAD><BODY><P CLASS=\"title\">"+ name +"</P><BR><CENTER><IMG SRC=img/"+photo+"></CENTER></BODY>"; 
wide=eval(wide)+10;
high=eval(high)+60;
photoWin = window.open('','','width='+wide+',height='+high+',directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=yes'); 
photoWin.document.open(); 
photoWin.document.write(text); 
photoWin.document.close(); 
} 

