// Popup

var newwindow

function popup1(url , title) {
if (newwindow && !newwindow.closed) 
{ newwindow.focus(); newwindow.document.clear() } 
else 
{ newwindow=window.open('','','width=465,height=350,resizable=0') }
newwindow.document.writeln('<html><head><title>' + title + '<\/title><\/head><body bgcolor=\"#ffffff\" topmargin=\"0\" leftmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">');
newwindow.document.writeln('<table height=\"100%\" width=\"100%\"><tr><td valign=\"middle\"><div align=\"center\"><img src=' + url + '><\/div><\/td><\/tr><\/table>');
newwindow.document.writeln('<\/body><\/html>');
newwindow.document.close();
}

// Popup Resize

function popUp(sPicURL) { 
     window.open( "../popUp.html?"+sPicURL, "",  
     "resizable=0,HEIGHT=400,WIDTH=400"); 
   } 