function verScroll(dir,spd,dly)
 {
  document.all.iescroller.scrollAmount=parseInt(spd);
  document.all.iescroller.scrolldelayt=parseInt(dly);
  document.all.iescroller.direction=dir;
 }
 function stopScroll()
 {
  document.all.iescroller.scrollAmount=0;
 }
  
 function  ScrollIt()
{
document.all.Scrollerleft.style.top=document.body.scrollTop+screen.height-270;
}



function displayDate()
{
var now = new Date();
var textout;
var month = now.getMonth();
var date = now.getDate();
var year = now.getFullYear();
if (month==0) textout="JANUARY";
if (month==1) textout="FEBRUARY";
if (month==2) textout="MARCH";
if (month==3) textout="APRYL";
if (month==4) textout="MAY";
if (month==5) textout="JUNE";
if (month==6) textout="JULY";
if (month==7) textout="AUGUST";
if (month==8) textout="SEPTEMBER";
if (month==9) textout="OCTOBER";
if (month==10) textout="NOVEMBER";
if (month==11) textout="DECEMBER";

textout += " " + date;
Datetxt.innerHTML= "<font size=2>" + textout +" " + year +"</font>";

}








