// JavaScript Document

var i;
var imageObj;
var images = new Array();

images[0] = "/account/images/mythos/topnav_ps_on.gif";
images[1] = "/account/images/mythos/topnav_so_on.gif";
images[2] = "/account/images/mythos/topnav_bs_on.gif";
images[3] = "/account/images/mythos/topnav_au_on.gif";
images[4] = "/account/images/mythos/topnav_cs_on.gif";
images[5] = "/account/images/mythos/topnav_ma_on.gif";

for (i = 0; i < images.length; i++)
{
	imageObj = new Image();
	imageObj.src = images[i];
}

function overGraphic(iStr)
{
	document.getElementById(iStr).src = "/account/images/mythos/topnav_" + iStr + "_on.gif";
}
function outGraphic(iStr)
{
	document.getElementById(iStr).src = "/account/images/mythos/topnav_" + iStr + "_off.gif";
}
function openMenu(iStr)
{
	document.getElementById(iStr).style.display = "block";
}
function closeMenu(iStr)
{
	document.getElementById(iStr).style.display = "none";
}

function popWindow(windowURL,windowName,windowWidth,windowHeight) 
{
  window.name = 'flash';
  newWindow = window.open(windowURL,windowName,'width='+windowWidth+',height='+windowHeight+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0');
  newWindow.focus();
}

function popWindowWithScrollBars(windowURL,windowName,windowWidth,windowHeight)
{
  window.name = 'flash';
  newWindow = window.open(windowURL,windowName,'width='+windowWidth+',height='+windowHeight+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1');
  newWindow.focus();
}
