function MM_openBrWindow(theURL,w,h) { //v2.0
	var wleft = (screen.width-w)/2
	var wtop = (screen.height-h)/2-24
	var wprop = "left=" + wleft + ",top=" + wtop + ",width=" + w + ",height=" + h + ",resizable=no,scrollbars=yes,toolbar=no,location=no,status=no,menubar=no"
	win=window.open(theURL,'',wprop);
}

function MM_openBrWindowNoBar(theURL,w,h) { //v2.0
	var wleft = (screen.width-w)/2
	var wtop = (screen.height-h)/2-24
	var wprop = "left=" + wleft + ",top=" + wtop + ",width=" + w + ",height=" + h + ",resizable=no,scrollbars=no,toolbar=no,location=no,status=no,menubar=no"
	win=window.open(theURL,'',wprop);
}