 function openPopup(oLink) {
 // Change "_blank" to something like "newWindow" to load all links in the same new window
	 var newWindow = open(oLink.getAttribute('href'), '_blank',"width=500,height=400,resizable,scrollbars,status");
	 newWindow.focus();
	 return false;
 }
  function openNews(oLink) {
	 var newWindow = open(oLink.getAttribute('href'), 'newsWin',"width=500,height=400,resizable,scrollbars,status");
	 newWindow.focus();
	 return false;
 }
  function openArticle(oLink) {
	 var newWindow = open(oLink.getAttribute('href'), 'articleWin',"width=780,height=500,resizable,scrollbars,status");
	 newWindow.focus();
	 return false;
 }
 function openEvent(oLink) {
	 var newWindow = open(oLink.getAttribute('href'), 'eventWin',"width=500,height=400,resizable,scrollbars,status");
	 newWindow.focus();
	 return false;
 }