function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_openBrWindowScreen(theURL,winName,features) { //v2.0
	width = screen.availWidth;
	height = screen.availHeight;
	hnd = window.open(theURL,winName,features);
	hnd.moveTo(parseInt((screen.availWidth - width) / 2), parseInt((screen.availHeight - height) / 4));
	if (window.focus) {hnd.focus()}
	//scrollbars=0,type=fullWindow,fullscreen=yes,
}
