// JavaScript Document

function PopupPic(sPicURL) { 
 popwidth = 250;
 popheight = 400;
 window.open( "/popup/pop_fit.html?"+sPicURL, "", 
 "left=" + Math.floor((screen.width - popwidth) / 2) + ",top=" + Math.floor((screen.height - popheight) / 2) +
 "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes,width="+popwidth+",height="+popheight); 
}

function PopUp(page) {
popwidth = screen.width - 100;
popheight = screen.height - 100;
OpenWin = this.open(page, "PopWin1", "toolbar=no, menubar=no, location=no, scrollbars=yes, resizable=yes, width="+popwidth+", height="+popheight+", left=" + Math.floor((screen.width - popwidth) / 2) + ", top=" + Math.floor((screen.height - popheight) / 2));
};