function Photo(Source,Width,Height)
{
 Stuff = "top=250,left=250,width="+Width+"px,height="+Height+"px,Status=no,toolbar=no,menubar=no,location=no,directories=no,scrollbars=no";
 Show = window.open("","Photo",Stuff);
 Show.document.open();
 Show.document.write("<head><title>Photo</title></head>");
 Show.document.write("<body bgcolor='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><IMG src='"+Source+"' height='"+Height+"' width='"+Width+"' onClick='window.close();'></body>"); 
 Show.document.close();
 Show.focus();
}

function makevisible(o,v)
{	o.style.visibillity=v;
}