// JavaScript Document

function showPic(whichPic) {
	if (document.getElementById) {
  	document.getElementById('newsPicCell').style.backgroundImage = 'url('+whichPic.href+')';
  	if (whichPic.title) {
   		document.getElementById('newsPicCaption').childNodes[0].nodeValue = whichPic.title;
  	} else {
  		document.getElementById('newsPicCaption').childNodes[0].nodeValue = whichPic.childNodes[0].nodeValue;
  	}
  	return false;
 	} else {
  	return true;
 	}
}
