// the variables below are for the breadcrumbs... if we can use them
// the 9 in the slice command will strip the first 9 chars from the title (the "Academe - ")

    var theTitle = document.title
    var theUrl = document.URL
    var theName = theTitle.slice(10)

// --- END breadcrumb variables


// --- popThis is for new browser windows

function popThis(url,title,w,h) {
window.open(url,title, "toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizeable=yes,copyhistory=no,width="+w+",height="+h);
} 

// --- END popThis


//change url function for select box navigation
function ChangeURL(newurl) {
	location.href=newurl;
}

// --- END change url function 

//protect emails from email crawlers
function ProtectEmail(user,site) {
	document.write('<a href=\"mailto:' + user + '@' + site + '\">' + user + '@' + site + '</a>');
}

// --- END //protect emails 



