<!--
function PopUp(url,x,y,scroll) {

	if (url=="") {
		return false;
	}
	else {
		winOpts = "status=no,menubar=no,toolbar=no,resizable=no,scrollbars=" + scroll;
		PopWin = window.open(url, "popup", winOpts);
		PopWin.resizeTo(x,y);
		PopWin.moveTo(200,50);
		PopWin.focus();
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
new_width = features.substring(features.indexOf("width=")+6, features.indexOf("width=")+9) * 1
new_height = features.substring(features.indexOf("height=")+7, features.indexOf("height=")+10) * 1
var left = Math.floor( (screen.width - new_width) / 2);
var top = Math.floor( (screen.height - new_height) / 2)
var winParms = "top=" + top + ",left=" + left
if (features) { winParms += "," + features; }
window.open(theURL, winName, winParms);
}

//-->
