function PopupPic(sPicURL) {
window.open( "/imageviewer.html?"+sPicURL, "popwin","resizable=1,HEIGHT=200,WIDTH=200,Left=20%,Top=20%,screenX=20%,screenY=20%");
}

function Popup(URL,HEIGHT) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=0,width=820,height=" + HEIGHT + "');");
}

function PopupHelp(TOPIC) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open('/admin/help.php?topic="+ TOPIC +"', '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=300,height=400');");
}

function ChangeParentDocument(url) {
	window.close();
  opener.location = url;
}