// JavaScript Document

function changeBG(objId){

 var obj = null; with (document){ if (getElementById)
  obj = getElementById(objId); }
  if (obj){
	obj.style.backgroundImage='url(./img/bg_news_over.jpg)';
	obj.style.cursor='pointer';
  }
}

function restoreBG(objId){
 var obj = null; with (document){ if (getElementById)
  obj = getElementById(objId); }
  if (obj){
	obj.style.backgroundImage='url(./img/bg_news.png)'
  }
}

function openWindow(theURL,winName) { 
	window.open(theURL,'_self');
}
