function PopNews(page, name, myWidth, myHeight, x, y) {
	popWind=window.open(page,name,"width=" + myWidth + ",height=" + myHeight + ",left=" + x + ",top=" + y + ",screenX=" + x + ",screenY=" + y + ",toolbar=no,status=no,scrollbars=no,location=no,menubar=no,directories=no,resizable=no");
	if(popWind.opener == null) {
		popWind.opener = window;
	}
	else {
		popWind.focus();
	}
	window.opener = popWind;
}

function PopUp(page, myWidth, myHeight) {
	newWind=window.open(page,"popUp","width="+myWidth+",height="+myHeight+",toolbar=no,status=no,scrollbars=yes,location=no,menubar=no,directories=no,resizable=no");
	if(newWind.opener == null) {
		newWind.opener = window;
	}
	else {
		newWind.focus();
	}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
