function MM_openBrWindow(theURL,winName,intWidth, intHeight, features) { //Modified by OpenRoad.
	
	//Calculate screen location (Centered on the screen)
	var locX = (screen.width /2) - (intWidth / 2);
	var locY = (screen.height / 2) - (intHeight / 2);
	
	//This will cascade the small help window under the large manual window so the user doesn't get confused.
	if(window.name == "smallHelpWindow" && winName == "manual"){
		locX = locX + 100;
	}
	var screenLoc = ",height="+intHeight+",width="+intWidth+",top="+locY+",left="+locX;
	features = features + screenLoc
	
	objWindow = window.open(theURL,winName,features);
	objWindow.focus();
}

function openSmallHelpWindow(strURL){
	MM_openBrWindow(strURL,'smallHelpWindow',420,220,'status=yes,scrollbars=yes,resizable=yes');
}

function openLargeHelpWindow(strURL){
	MM_openBrWindow(strURL,'manual',530,510,'status=yes,scrollbars=yes,resizable=yes')
}