//Popup (from original)
function cPop(url,wide,high,left,top,scrollbars) {
	TheNewWin = window.open(url,"popup",'width=' + wide + ',height=' + high + ',left=' + left + ',top=' + top + ',fullscreen=0,scrollbars=1,titlebar=0,menubar=0,toolbar=0,statusbar=1'); 
TheNewWin.resizeTo(wide,high);
TheNewWin.moveTo(left,top);
} 