﻿// JScript File
function staffRegister()
{
  alert("hello monkey boy");
  if(!document.getElementById("tandc").checked)
  {
    alert("Please confirm you have provided correct information.");
    return false
  }
  else
  { 
    return true;
  }
}

function parentRegister()
{

  if(!document.getElementById("tandc").checked)
  {
    alert("Please confirm you have provided correct information and read the Baby Rock terms and conditions.");
    return false
  }
  else
  { 
    return true;
  }
}

 
function ClientValidationParent(source, args) 
 
{ 
 
     args.IsValid = document.all["ctl00_ContentPlaceHolder1_RegisterParent1_chkbox"].checked; 
 
} 

function ClientValidationStaff(source, args) 
 
{ 
 
     args.IsValid = document.all["ctl00_ContentPlaceHolder1_RegisterStaff1_chkbox"].checked; 
 
} 

