function addListener(element, baseName, handler) {
    if (element.addEventListener)
        element.addEventListener(baseName, handler, false);
    else if (element.attachEvent)
        element.attachEvent('on' + baseName, handler);
}


function campus() {

document.discover_email.name.focus();

}

function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

addListener(window, 'load', campus); 