function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		location_01_over = newImage("/images/location_01-over.jpg");
		location_02_over = newImage("/images/location_02-over.jpg");
		location_03_over = newImage("/images/location_03-over.jpg");
		location_04_over = newImage("/images/location_04-over.jpg");
		location_05_over = newImage("/images/location_05-over.jpg");
		preloadFlag = true;
	}
}
//begin IE 4+ And NS6 dHTML Outlines
function hideshow(which)
{
if (!document.getElementById|document.all)
	{
	return
	}
else
	{
	if (document.getElementById)
		{
		oWhich = eval ("document.getElementById('" + which + "')")
		}
	else
		{
		oWhich = eval ("document.all." + which)
		}
	}

	window.focus()

	if (oWhich.style.display=="none")
		{
		oWhich.style.display=""
		}
	else
		{
		oWhich.style.display="none"
		}
}
//end IE 4+ And NS6 dHTML Outlines
function initbuttonMenuExpandible()
{
hideshow('buttonMenuChild001')
hideshow('buttonMenuChild002')
hideshow('buttonMenuChild003')
hideshow('buttonMenuChild004')
hideshow('buttonMenuChild005')
hideshow('buttonMenuChild006')
hideshow('buttonMenuChild007')
}