<!--

//--------------------------------
function check(input)
//--------------------------------
{
 if (input.checked == true)
   input.checked = false;
}

//-----------------------------------------
function checkisEmail(strng)
//-----------------------------------------
{
  var emailFilter=/^.+@.+\..{2,3}$/;
  if (!(emailFilter.test(strng)))
  {
    alert("Please enter a valide email address !")
    return false
  }
  else return true;
       
  var illegalChars= /[\(\)\&lt;\&gt;\,\;\:\\\/\"\[\]]/;      
  if (strng.match(illegalChars))
  {
    alert("Please enter a valide email address !")
    return false;
  }
  else return true;

}


function openInformationWindow()
{

InformationWindows = window.open("maintwarning.htm","Information","toolbar=no,width=600,height=200,status=no,scrollbars=yes,resize=no,menubar=no")

}

function openFormationInformationWindow()
{

InformationWindows = window.open("decorgform.htm","Information","toolbar=no,width=600,height=500,status=no,scrollbars=yes,resize=no,menubar=no")
}

//-->
