// JavaScript Document


//footer school link
function navi(obj) {
 url = obj.options[obj.selectedIndex].value;
 if(url != "") {
   window.open(url,"","toolbar=yes,location=yes,resizable=yes,menubar=yes,scrollbars=yes,titlebar=yes,status=yes");
  }
}

function searchSubmit() {
    text=document.forms[0].elements['search'].value;
    if(text.length > 0) {
        document.forms[0].submit();
    }
}