// ZOMM PICTURE
function openIMGwin(imgURL) {
var Wname = "popped";
var exec = 'window.open("';
// Set name of common html file here
var URL   = "zoompic_page.htm?"+imgURL;
exec+= URL;      exec+= '", "';
exec+= Wname;    exec+= '", "';
// default dimensions set next line
exec+='width=50,height=50';
// 0,0 positions to top left
// top=0,left=0 does for MSIE
// screenX=0,screenY=0 does for Netscape
// other attributes set for a very plain window
// note that resizable=1 because
// Netscape 4.x users will have to resize manually
// NN6.x ??
exec+=',top=0,left=100,screenX=0,screenY=0,toolbar=0,location=0';
exec+=',directories=0,resizable=0,status=0,menubar=0,scrollbars=0")';
// eval() takes the string called exec built and executes as code
eval (exec);
}//
