		
var url = "";

/*
function setNews(newUrl) {
	url = newURL;
	alert(url);
}

'http://www01.hjf.org/apps/internet/hjfnewscenter.nsf/7964333c3d1482eb85256a54005f28c5/a8baab7925c43afd85256e3c006385cd?OpenDocument'
*/
function setNews() {
	alert("got to setNews");
}

function getNews() {
	alert("got to getNews");
	//return url;
}

function contact(dept) {

	var url = "http://www.hjf.org/hjfcontacts/contact.pl?deptName="+dept;
	//var url = "http://darwin.hjf.org/hjf2004/hjfcontacts/contact.pl?deptName="+dept;
	var x = window.open(url,"HJF","toolbar=no,width=500,height=600");
	
	if (window.focus) { 
		x.focus();
	}
}
