
function hover(obj, name)
{
	obj.src = "images/" + name + "_hover.jpg";
}

function restore(obj, name)
{
	obj.src = "images/" + name + ".jpg";
}


function hoverIndex(obj, name)
{
	obj.src = "images/" + name + "_hoverIndex.jpg";
}

function hover2(obj, name)
		{
			obj.src = "../images/" + name + "_hover.jpg";
		}
		
		function restore2(obj, name)
		{
			obj.src = "../images/" + name + ".jpg";
		}

var currentLocation = ""; 

function displayLocation(location)
{	
	if (currentLocation != "")
	{
		document.getElementById(currentLocation).style.display = "none";	
	}
	document.getElementById(location).style.display = "block";
	
	currentLocation = location;
}

function displayExecutive(location)
{	
	if (currentLocation != "")
	{
		document.getElementById(currentLocation).style.display = "none";	
	}
	document.getElementById(location).style.display = "block";
	
	currentLocation = location;
}


function launch()
{
	var newWindow = window.open("home.htm", "_blank", "width=650,height=566,menubar=no,toolbar=no,status=no,resizable=no");
}


function displayPop(page)
{
	var newWindow = window.open(page, "_blank", "width=650,height=566,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no");
}


function goHome()
{
	window.close();
	window.opener.location.href = "../index.htm";
}
