/*********************************************/
//	Created By Francisco Batacan 05/27/03
/********************************************/

<!--

//function used for bottom navigation quickLinks
function searchFor(theForm) {
if(theForm.searchingFor.options[theForm.searchingFor.selectedIndex].value == "quick")
 	{
		alert("Please select an option beneath \"Quick\ Links\".");
		theForm.searchingFor.focus();
		return false;
  	}
else if(theForm.searchingFor.options[theForm.searchingFor.selectedIndex].value == "nocrid")
	{
		alert("Select one of the Creator ID categories.");
		theForm.searchingFor.focus();
		return false;
  	}
else if(theForm.searchingFor.options[theForm.searchingFor.selectedIndex].value == "nosearch")
	{
		alert("Select one of the search categories.");
		theForm.searchingFor.focus();
		return false;
  	}
else
	{
		var theanchor = theForm.searchingFor.options[theForm.searchingFor.selectedIndex].value
		//alert(theanchor);
		window.location = theanchor;
		return true;
	}
}

/***********************************************************************************
*	infoFor() and writeHREF() functions allows us to use blue go button image in footer
*	need to assign takeMeto to developers because this is the first item on the list
*	since infoFor is invoked by onChange 
************************************************************************************/
//var takeMeto = "/developers"; //use when testing in teamsite
var takeMeto = " ";

function infoFor(theInfoForm) {
	//the follwing statement will reassign takeMeto with the selected option onChange
	takeMeto = theInfoForm.informationFor.options[theInfoForm.informationFor.selectedIndex].value;
	//alert (takeMeto);
	return true;
}

function writeHREF() {
	//alert (takeMeto);
	window.location = takeMeto;
}
//-->
