function toggleOff(layer) {	document.getElementById(layer).style.display="none"; }
function toggleOn(layer) { document.getElementById(layer).style.display="block"; }
function toggle(obj){ var el = document.getElementById(obj); if (el.style.display != 'none'){ el.style.display = 'none'; } else { el.style.display = ''; }}//end function toggle()



function getUndergradApp()
{
	window.location = 'https://sec.was.asu.edu/ugapp/mainmenulogic?selection=1';
}


function getGradApp()
{
	window.location = 'https://sec.was.asu.edu/dgsadmissions/Index.jsp';
}


function popProgInfo(value)
{
	var ID = value;
	var scriptFilename = 'programhelp.php';
	var popUpName = '_progInfo';
	var parameters = 'height=300,width=480,scrollbars=1,top=400,left=400';
	
	//Pops up the program info in a new pop up window
	pop = window.open (scriptFilename+'?prog='+ID,popUpName,parameters);
	
	//Auto focus the pop up if the user did not close the previous pop.
	if (window.focus)
	{ 
		pop.focus();
	}

}