<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_openBrWindow3(theURL,winName,boxWidth,boxHeight,features)
{
	var screenWidth = (screen.width);
	var screenHeight = (screen.height);
	
	var boxLeft = (screenWidth/2) - (boxWidth/2);
	var boxTop = (screenHeight/2) - (boxHeight/2);

	var strOptions = features + ",top=" + boxTop + ",left=" + boxLeft + ",width=" + boxWidth + ",height=" + boxHeight + "";
	
	window.open(theURL,winName,strOptions);
}
//-->
