<!--
imag = new Array()
    imag[0] = "athletel.jpg"
    imag[1] = "athletelg.jpg"
    imag[2] = "athleter.jpg"
    imag[3] = "athleterg.jpg"

function swtch(num,imgname){
     imgname.src = imag[num]
}
function update() {
mydate=new Date(document.lastModified)
year=mydate.getYear()
year = year-2000
year="0"+year 
day=mydate.getDay()
month=mydate.getMonth()+1
if (month<10)
month="0"+month
daym=mydate.getDate()
if (daym<10)
daym="0"+daym
document.write(""+daym +"/"+month+"/"+year)
}

function validate(text1,text2,text3)
{
 if (text3=="bookings")
   {if (text1=="clubhouse")
     {if (text2=="2002")
        {load('Bookings_2002.htm')}
      else 
        {if (text2=="2003")
           {load('Bookings_2003.htm')}
      else
	{if (text2=="2004")
           {load('Bookings_2004.htm')}
      else
           { alert("Invalid Password")}
         }}
     } 
    else
      { alert("Invalid UserID")}
   }

 if (text3=="EYAL")
   {if (text1=="eyal")
     {if (text2=="contacts")
        {load('EYAL2002contacts.htm')}
      else 
        { alert("Invalid Password")}
     } 
    else
      { alert("Invalid UserID")}
   }
}

function load(url)
{
 location.href=url;
}
function printform()
{
 window.print()
}

// Reload frames assuming names are Frame1, Frame2 and Frame3
function frameload(para1,para2) 
{
parent.Frame3.location.href = para1
parent.Frame1.location.href = para2
}
//-->