// school select menu functions:
function showMenu(which)
{
   document.all[which].style.display = "inline";
}

function hideMenu(which)
{
   document.all[which].style.display = "none";
}


// for menu on left side of home pages
function swap(el,state) {
	if(state == 1) {
		el.style.background =  'url(images/leftmenu_on.gif)';
		el.style.backgroundRepeat =  'no-repeat';
		el.style.color =  '#005221';
	}
	else {
		el.style.background =  'url(images/leftmenu_off.gif)';
		el.style.backgroundRepeat =  'no-repeat';
		el.style.color =  'white';
	}
}

function doMascot(swf)
{
   var source = '\"' + 'images/flash/' + swf + '.swf' + '\"';
   document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="180" height="160">\n');
   document.write('<param name="movie" value=' + source + ' />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<param name="wmode" value="transparent" />\n');
   document.write('<embed src=' + source + ' quality="high" wmode="transparent" bgcolor="#003366" width="180" height="160" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" />\n');
   document.write('</object>\n');
}

function popWindow(filename){
	popup = window.open(filename,"myWindow",
	"height=320,width=550,left=30,top=80,menubar=no,status=yes,scrollbars=yes,scrollable=yes,resizable=1");
}
