/********************************************** LMCore.js Basic ActiveCampus JavaScript functions including    imageswapper, popup, external site frame, and quicklinks Author:  M. Dempster 3//01 Copyright:  LiquidMatrix Corp.**********************************************//********************************************** Browser control variables   These variables determine which browser is being used**********************************************/ var isNav = (document.layers) ? true:false				//Layers compliant browser (Netscape 4.x)var isIE = (document.all) ? true:false				//IE4/5 compliant browser var isDOM = (document.getElementById) ? true:false	   	//DOM Compliant browser (NS6, Opera 5)var isOther = (!isNav&&!isDOM&&!isIE) ? true:false				//Other browser (NS3, Lynx)/********************************************** jumpto(formobj, stringexp) form:   	use:  Required	Datatype:  JS Form Obj	A valid reference to a form object on the page. name:   	use:  Required	Datatype:  String	A valid reference to a select control.     Return:  Nothing Description:   Takes the value of the selected item in selector name, and forwards browser to that value.   				During the forward process, it resets the selector to default (index=0) Tips:  Normally, form is passed this.form, which is a generic reference to the form enclosing name**********************************************/ function jumpto(form, name) {	var myindex= eval('form.'+ name + '.selectedIndex');			//Gets index of user selection in Stringexp    var myval=eval('form.' + name + '.options[myindex].value');		//Gets value at myindex    eval('form.'+ name + '.selectedIndex = 0');						//Resets selected index to 0 (default)	if (myval != "") {	     location.href=myval;									//If value is local, send this window to new page.    }}/********************************************************************************************/ function MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}