function popup(FILE) { 

pop = window.open("", "detail", 'toolbar=no,resizable=yes,status=no,location=no,menubar=no,scrollbars=yes,screenX=50,screenY=20,left=50,top=20,width=525,height=480,');
pop.focus();
pop.document.write("<HTML><HEAD><TITLE>Detailed View</TITLE></HEAD>\n");
pop.document.write("<body BGCOLOR=#F8F5E8>\n");
pop.document.write("<CENTER>\n");
pop.document.write("<TABLE BORDER=0 CELLSPACING=3 BGCOLOR=#52748f><TR><TD  BACKGROUND=\"\">\n");
pop.document.write("<IMG border=1 src=media/");
pop.document.write(FILE + ".jpg>");
pop.document.write("</TD></TR></TBODY></TABLE>\n");
pop.document.write("<BR><FORM><INPUT TYPE='BUTTON' VALUE='Close' onClick='window.close()'></FORM>");
pop.document.write("</CENTER>\n");
pop.document.write("</BODY></HTML>");
pop.document.close();
}

function popup2(url) {
       window.open(url, "popups", "toolbar=yes,resizable=yes,status=yes,location=yes,menubar=yes,scrollbars=yes,screenX=50,screenY=50,left=50,top=50")
       }
