function popUp(url, winW, winH) {
	winW += 60; // total width of content margin in popup.css
	winH += 219; //height of banner(49) + height of bottom stripe (7) + height of stripe's margin (13) + 30px of space in popup.css
	var winl = (screen.width-winW)/2;
	var wint = (screen.height-winH)/2;
	popUpWin = window.open(url,name,"toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,copyhistory=0,width="+winW+", height="+winH+",top="+wint+",left="+winl+",");
	if(window.focus) {
		popUpWin.focus();
	}
	if (!popUpWin.opener) {
		popUpWin.opener = self;
	}

}