<!-- Begin
function CrewDetails(CrewID)
{
  window.open('displcrew.php?ID='+CrewID,'NewWindow','width=500,height=400,toolbars=no,scrolling=no,resizable=no') ;
}
function Session(Date,Boat,SessNum)
{
  window.open('trainsession.php?DateID='+Date+'&BoatID='+Boat+'&SessNum='+SessNum,'NewWindow','width=500,height=400,toolbars=no,scrolling=no,resizable=no') ;
}
function RowerDetails(RowID)
{
  window.open('displrower.php?ID='+RowID,'NewWindow','width=500,height=400,toolbars=no,scrolling=no,resizable=no') ;
}
function CoxDetails(CoxID)
{
  window.open('displcox.php?ID='+CoxID,'NewWindow','width=500,height=400,toolbars=no,scrolling=no,resizable=no') ;
}
function UpdateCell(DateID,BoatID,SessNum)
{
  window.open('trainingupd.php?DateID='+DateID+'&BoatID='+BoatID+'&SessNum='+SessNum,'NewWindow','width=500,height=400,toolbars=no,scrolling=no,resizable=no') ;
}
function UpdateCrew(CrewID)
{
  window.open('crewdetails.php?ID='+CrewID,'NewWindow','width=500,height=400,toolbars=no,scrolling=no,resizable=no') ;
}
function UpdateCrewTry(CrewID)
{
  window.open('crewdetailstry.php?ID='+CrewID,'NewWindow','width=500,height=450,toolbars=no,scrolling=no,resizable=no') ;
}
function UpdateCox(CoxID)
{
  window.open('coxdetails.php?ID='+CoxID,'NewWindow','width=500,height=400,toolbars=no,scrolling=no,resizable=no') ;
}
function DeleteCox(CoxID)
{
  var answer = confirm ("Are you sure you want to delete this cox?")
  if (answer)
    window.open('coxdetailsnew.php?ID='+CoxID+'&Delete=true','width=500,height=400,toolbars=yes,scrolling=no,resizable=no') ;
  else
    alert ("Phew!")
}
function UpdateRace(RaceID)
{
  window.open('racedetails.php?ID='+RaceID,'NewWindow','width=500,height=400,toolbars=no,scrolling=no,resizable=no') ;
}
function LoginPage()
{
  window.open('login.php','NewWindow','width=350,height=200,toolbars=no,scrolling=no,resizable=no') ;
}
function LogoutPage()
{
  window.open('logout.php','NewWindow','width=350,height=200,toolbars=no,scrolling=no,resizable=no') ;
}

// End -->

