<!-- 
function OpenWindow(URL, width, height){
 window.open (URL,"anyName","toolbar=yes,location=yes,scrollbars=yes,width=" + width + ",height=" + height + ",personalbar=yes,directories=yes,menubar=yes,titlebar=yes,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");
 return false;
}
 
function OpenWindowWithScrollbar(URL, width, height){
 window.open (URL,"anyName","toolbar=no,location=no,scrollbars=yes,width=" + width + ",height=" + height + ",personalbar=no,directories=no,menubar=no,titlebar=no,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");
 return false;
}

function OpenImageWindow(URL, width, height){
 window.open (URL,"anyName","toolbar=no,location=no,scrollbars=no,width=" + width + ",height=" + height + ",personalbar=no,directories=no,menubar=no,titlebar=no,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");
 return false;
}
 
function ShowCalendar(formName, controlName){
	window.open ("/admin/Calendar.asp?Control=" + formName + "." + controlName,"calWin","scrollbars=no,status=no,width=220,height=155");
}

function menuMouseOver(event, menuID)
{
	HM_f_PopUp('elMenu' + menuID,event);
	document.getElementById('div' + menuID).style.backgroundColor = '#13375D';
}

function menuMouseOut(event, menuID)
{
	HM_f_PopDown('elMenu' + menuID);
	//hideMenu(event);
}

function hidingMenu(menuID)
{
	document.getElementById('div' + menuID).style.backgroundColor = '#BA4012';	
}

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeBLImages() {
	if (document.images && (preloadFlag == true)) {	
		for (var i=0; i<changeBLImages.arguments.length; i+=2) {
			document[changeBLImages.arguments[i]].src = changeBLImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadBLImages() {
	if (document.images) {
		map_ImageMap_01_over = newImage("images/bl_map-ImageMap_01_over.gif");
		map_ImageMap_02_over = newImage("images/bl_map-ImageMap_02_over.gif");
		map_ImageMap_03_over = newImage("images/bl_map-ImageMap_03_over.gif");
		map_ImageMap_04_over = newImage("images/bl_map-ImageMap_04_over.gif");
		preloadFlag = true;		
	}
}
//-->