<!--
defaultStatus = '';

function On( imgName )
{
	if ( document.images )  
	{
		document.images[imgName].src = eval(imgName + "on.src");
	}
}

function Off( imgName ) 
{
	if ( document.images )
	{
		document.images[imgName].src = eval(imgName + "off.src");
	}
	window.status = defaultStatus;
}

function redirect( pulldown )
{
	var newLocation = pulldown[pulldown.selectedIndex].value;
	if ( newLocation != "" )
	{
		self.location = newLocation;
	}
}

function popupAwardWinner(url)
{
	if(navigator.appName == "Microsoft Internet Explorer")
		window.showModalDialog(url, null, "dialogWidth:600px; dialogHeight:350px; center:yes; resizable:no;");
	else {
		var topOffset = (screen.height - 350) / 2;
		var leftOffset = (screen.width - 600) / 2;
		window.open(url, null, "width=600px,height=350px,top=" + topOffset + ",left=" + leftOffset + ",modal=yes,resizable=no");
	}
}

function toggleMeetingPanels(on, off1, off2, anc)
{
	//Toggle Divs
	var sty = document.getElementById(on).style;
	sty.display = "block";
		
	sty = document.getElementById(off1).style;
	sty.display = "none";
	
	sty = document.getElementById(off2).style;
	sty.display = "none";
			
	//Toggle Anchor Colors
		
	sty = document.getElementById("ancRepAssembly").style;
	sty.color = "#FFFFFF";
		
	sty = document.getElementById("ancSenateCouncil").style;
	sty.color = "#FFFFFF";
		
	sty = document.getElementById("ancSenateAdminCouncil").style;
	sty.color = "#FFFFFF";
		
	sty = document.getElementById(anc).style;
	sty.color = "#999999";
}

function toggleSenateAwards(on, off, anc)
{
	//Toggle Divs
		
	sty = document.getElementById(on).style;
	sty.display = "block";
	
	sty = document.getElementById(off).style;
	sty.display = "none";
	
	//Toggle Anchor Colors
		
	sty = document.getElementById("ancDistinguishedTeaching").style;
	sty.color = "#D4CFF9";
		
	sty = document.getElementById("ancFacultyResearchLecturer").style;
	sty.color = "#D4CFF9";
		
	sty = document.getElementById(anc).style;
	sty.color = "#999999";
}
//-->


