
function popup(popupURL, w, h, scr) {
	d = new Date();
	var xPos = (screen.availWidth / 2) - (w/2);
	var yPos = (screen.availHeight / 2) - (h/2) - 20;
//	window.open(popupURL, "popup" + d.valueOf(), "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + scr + ",copyhistory=0,resizable=1,width=" + w + ",height=" + h + ",left=" + xPos + ",top=" + yPos);
	window.open(popupURL, "popup", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + scr + ",copyhistory=0,resizable=1,width=" + w + ",height=" + h + ",left=" + xPos + ",top=" + yPos);
}

