<!--

var newPopUp
function popUp(pg,w,h,rs,sc){
	if (newPopUp){
		if (!newPopUp.closed)	newPopUp.close()
	}
	var windowX = Math.ceil( (window.screen.width  - w) / 2 );
	var windowY = Math.ceil( (window.screen.height - h) / 2 );
	var wstep = 20;
	var hstep = 30;
	newPopUp = window.open(pg,"popUp","menubar=no,toolbar=0,resizable=" + rs + ",scrollbars=" + sc + ",width=" + w + ",height=" + h + ",screenX=" + windowX + ",screenY=" + windowY + ",left=" + windowX + ",top=" + windowY);
	newPopUp.resizeTo(w + wstep , h + hstep);
	newPopUp.moveTo(windowX ,windowY);
	newPopUp.focus();
}

var newPopUp2
function popUp2(pg,w,h,rs,sc){
	if (newPopUp2){
		if (!newPopUp2.closed)	newPopUp2.close()
	}
	var windowX = Math.ceil( (window.screen.width  - w) / 2 );
	var windowY = Math.ceil( (window.screen.height - h) / 2 );
	var wstep = 20;
	var hstep = 30;
	newPopUp2 = window.open(pg,"popUp2","menubar=no,toolbar=0,resizable=" + rs + ",scrollbars=" + sc + ",width=" + w + ",height=" + h + ",screenX=" + windowX + ",screenY=" + windowY + ",left=" + windowX + ",top=" + windowY);
	newPopUp2.resizeTo(w + wstep , h + hstep);
	newPopUp2.moveTo(windowX ,windowY);
	newPopUp2.focus();
}

//-->
