// JavaScript Document
function displayDate(){
  var today = new Date();
  var months = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
  var dayOfWeek = new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
  document.write('<center><font face="Arial,Helvetica,Verdana,Sanserif" size="1" color="#9999AA">- ' + dayOfWeek[today.getDay()] + ' ' + today.getDate() + ' ' + months[today.getMonth()] + ' ' + today.getFullYear() + ' -</font></center>');
}


var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
          { if(popUpWin) { if(!popUpWin.closed) popUpWin.close(); }
		  popUpWin=open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top+''); }
