function PopupUrl(url)
{

   var width  = 235;
   var height = 475;
   var left   = (screen.width  - width)/2;
   var top    = (screen.height - height)/2;
   var params = 'width='+width+', height='+height;
  
   params += ', top='+top+', left='+left;
   params += ', directories=no';
   params += ', location=no';
   params += ', menubar=no';
   params += ', resizable=no';
   params += ', scrollbars=no';
   params += ', status=no';
   params += ', toolbar=no';

   var newwin = window.open(url,'', params);
   if (window.focus) 
      { newwin.focus() }
   return false;

}


function InsertDate(elemID)
{
	var months = new Array("January","February","March","April","May","June","July","August","September","October","November","December"),
	    days = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"),
	    today = new Date();
	    
	   dateHolder = document.getElementById(elemID);
	   
	   dateHolder.innerHTML = " " + days[today.getDay()] + " " + months[today.getMonth()] + " " + today.getDate() + ", " + today.getFullYear();
}


function setImgSrc(imgId,imgUrl,capId,theCaption)
{
    var theImg = document.getElementById(imgId);
    var theP = document.getElementById(capId);
    theImg.src = imgUrl;
    theP.innerHTML = theCaption;
    return false;
}