// JavaScript Document

//news page rollover

function Newsroll(el, onoff) {
	// target path depending on browser
	if (navigator.appName != 'Microsoft Internet Explorer') {
		dt = el.firstChild.nextSibling
		ni =el.firstChild.nextSibling.nextSibling.nextSibling;
	} else {
		dt = el.firstChild
		ni =el.firstChild.nextSibling;
	}
	
	if (onoff == 'on') {
		dt.style.color = '#fb8f9a';	
		ni.style.color = '#333333';
		
	} else {
		dt.style.color = '';	
		ni.style.color = '';
	}
}

function clearEl(el, val) {
	if (el.value == val) {
		el.value = "";	
	}
}
function loadNews(id) {
	window.location = "news.php?id="+id	
}
function loadPub(pubid) {
	window.location = "publications_gal.php?pubid="+pubid	
}