/**************************************************/
/********** Scripts for Left Nav SubMenus *********/
/**************************************************/

function navOver(obj,img,spc)
	{

		obj.style.background =  "#C8DFF5";
		obj.style.border =  "1px solid #577FA8";
		img.style.background = "#ffffff"
		spc.style.background =  "#577FA8";
	}

function navOut(obj,img,spc)
	{
		obj.style.background =  "#FFCC33";
		obj.style.border =  "1px solid #FFCC33";
		img.style.background = "#FFCC33"
		spc.style.background =  "#FFCC33";
	}

function subNavOver(subobj)
	{
		elect2.style.background =  "#cccccc";
		elect2.style.border =  "1px solid #000066";
		subobj.style.visibility = "visible";
		
	}

function subNavOut(subobj)
	{
		elect2.style.background =  "#e0e0e0";
		elect2.style.border =  "1px solid #e0e0e0";
		subobj.style.visibility = "hidden";
	}

function subMenuOver(subMenuItem)
	{
		subMenuItem.style.background = "#cccccc";
	}
	
function subMenuOut(subMenuItem)
	{
		subMenuItem.style.background = "#e0e0e0";
	}

/*************************************************/	
/********** Scripts for Top Nav SubMenu **********/
/*************************************************/

function topNavOver(obj)
	{
		if(obj.style.visibility=="hidden"){obj.style.visibility = "visible";}
		else{obj.style.visibility = "hidden";}
	}
		
function topNavOut(obj)
	{
		obj.style.visibility = "hidden";
	}

/*************************************************/	
/**************** Scripts General ****************/
/*************************************************/	
	
function newwindow(winURL,winw,winh)
		{
		window.open(winURL,"notifyWindow","menubar=yes,toolbar=no,locationbar=no,scrollbars=yes,width="+winw+",height="+winh+"");
		}
