﻿function Validator_Required(strID)
{
  if(document.getElementById(strID).value=="")
  {
    return false;
  }
  else
  {
    return true;
  }
}

function Validator_EMail(strID)
{
  if(document.getElementById(strID).value.length<7)
  {
    return false;
  }
  else
  {
    return true;
  }
}

function Validator_Checked(strID)
{
  return document.getElmentById(strID).checked;
}
