function GetSelectValue(FieldName) {
	// Usage Ex: GetSelectValue('document.FOO.FOOFIELD');
	var UserPicked=eval(FieldName + ".selectedIndex");
	var ReturnValue=eval(FieldName + ".options[UserPicked].value");
	return(ReturnValue);
}


function popHandler(FieldName){
var URL = GetSelectValue(FieldName);
if(URL!=""){
MM_openBrWindow(URL,'WQEDSponsors','toolbar=yes,location=yes,scrollbars=yes,resizable=yes,width=800,height=600');
    }
}

function jumpHandler(FieldName){
var URL = GetSelectValue(FieldName);
if(URL!=""){

document.location.href = URL;
    }
}


function getURLx() {
document.form1.url.value = document.location.href;
}

function submitform()
{
  document.form1.submit();
}

function MM_changeProp(objId,x,theProp,theValue) { //v9.0
  var obj = null; with (document){ if (getElementById)
  obj = getElementById(objId); }
  if (obj){
    if (theValue == true || theValue == false)
      eval("obj.style."+theProp+"="+theValue);
    else eval("obj.style."+theProp+"='"+theValue+"'");
  }
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

