<!---

function CheckInput() {
var m_comfirm='By clicking the submit button, \nyou have read, understood and will accept \nthe Services  Agreement of WOWIN Co.'
if (document.webhosting.mess01DomainName.value=='')
{ alert('The DOMAIN can not be empty!'); document.webhosting.mess01DomainName.focus(); return false;}

if((document.webhosting.mess01DomainName.value.indexOf(".")<3)){
  alert("Please fill it with the Correct Domain Name!");
  document.webhosting.mess01DomainName.focus();
  return(false);
}


if (document.webhosting.mess02Plan.value=='')
{ alert('You must selet one Plan!'); document.webhosting.mess02Plan.focus(); return (false);}


if((document.webhosting.mess04Registrant_name.value=='')||(document.webhosting.mess05Company_name.value=='')){
  alert("Please fill it with the domainName Holder!");
  document.webhosting.mess04Registrant_name.focus();
  return(false);
}

if (document.webhosting.mess07Country.value=='')
{ alert('Where are Your Country,state?'); document.webhosting.mess07Country.focus(); return false;}

if (document.webhosting.mess08Contact_name.value=='')
{ alert('Your Name? '); document.webhosting.mess08Contact_name.focus(); return false;}
if((document.webhosting.mess10Contact_email.value.indexOf(".")<3)||(document.webhosting.mess10Contact_email.value.indexOf("@")<2)){
  alert("Please fill it with the Correct Email!");
  document.webhosting.mess10Contact_email.focus();
  return(false);
}

if (document.webhosting.mess11Contact_phone.value=='')
{ alert('Your Phone No.? '); document.webhosting.mess11Contact_phone.focus(); return false;}
if (!document.webhosting.agreement.checked)
{alert('You have not read and accepted \nthe Services  Agreement of WOWIN Co.(SOWeb.net).');return false;}
return confirm(m_comfirm);
}

---->
