function Photo(Source,Width,Height)
{
 Stuff = "top=100,left=100,width="+Width+",height="+Height+",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>Photoshots</title></head>");
 Show.document.write("<body bgcolor='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><IMG src='"+Source+"' height='"+Height+"' width='"+Width+"'></body>"); 
 Show.document.close();
}