<!--
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
if(year<0)year=year+1900
if (year<10)
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=="2006")
        {load('Bookings_2006.htm')}
      else 
        {if (text2=="2007")
           {load('Bookings_2007.htm')}
      else
	{if (text2=="2008")
           {load('Bookings_2008.htm')}
      else
	{if (text2=="2009")
           {load('Bookings_2009.htm')}
      else
	{if (text2=="2010")
           {load('Bookings_2010.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")}
   }
 if (text3=="members")
   {if (text1=="members")
     {if (text2=="names")
        {load('CurrentWHmembers10web.xls')}
      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
}
//-->