/* author: Garry Conway */
/* creation date: 6/16/04 */

swidth = 0
if (screen){
swidth = screen.width -60
}
sheight = 0
if (screen){
sheight = screen.height -60
}

function imageWindow(photo){
photoWindow = window.open("","photoWindow","width="+swidth+",height="+sheight+",left=50,top=0,,scrollbars=yes,resizable=yes");
photoWindow.document.write("<HTML><HEAD><TITLE>PhotoWindow</TITLE></HEAD>");
photoWindow.document.writeln("<BODY BGCOLOR=#EFEFEF><Table  WIDTH=100% HEIGHT=100%><tr ><td align=center valign=middle>");
photoWindow.document.writeln("<img src=\""+photo+"\">");
photoWindow.document.writeln("<tr><td></table></BODY></HTML>");
photoWindow.document.close();
photoWindow.focus();
}
//-->
