function checkAccept(thisvariable)
{  
  if (thisvariable.value != "1")
  {
     alert ("You must accept the terms of agreement to proceed");
     return false;
  }
return true;
}



