<!--

function checkform ( form )
{

  if (form.ContactName.value == "") {  
alert( "Please write your name in the \"Contact Name\" field.");
    form.ContactName.focus();
    return false ;
  }

  if (form.Country.value == "") {
    alert( "Please select your country in the \"Country\" field.");
    form.Country.focus();
    return false ;
  }

  if (!form.Email.value.match(/.+\@.+\..+/i))
	{
	alert("Please write your email address in the \"Email\" field.");
	form.Email.focus();
	return false;
	}

  if (document.getElementById("services\[\]").value == "") {
    alert( "Please select the services in which you are interested.");
    document.getElementById("services\[\]").focus();
    return false;
  }
  
//  if (form.services.value == "") {
//    alert( "Please select the services in which you are interested.");
//    form.services.focus();
//    return false;
//  }

	var radioSelected = false;
	for (i = 0;  i < form.RegisterDomain.length;  i++)
	{
	if (form.RegisterDomain[i].checked)
	radioSelected = true;
	}
	if (!radioSelected)
	{
	alert("Do you want to register your domain name with us?");
	form.RegisterDomain[0].focus() ;
	return (false);
	}


//	var radioSelected = false;
//	for (i = 0;  i < form.WebHosting.length;  i++)
//	{
//	if (form.WebHosting[i].checked)
//	radioSelected = true;
//	}
//	if (!radioSelected)
//	{
//	alert("Do you currently have hosting provider? If yes, please write the name.");
//	form.WebHosting[0].focus() ;
//	return (false);
//	}

	 if (form.profile.value == "") {
	  alert( "Please briefly describe your company/organization profile.");
    form.profile.focus();
    return false;
  }

//  if (form.BudgetCurreny.value == "") {
//    alert( "Which currency your would like to pay?");
//    form.BudgetCurreny.focus();
//    return false;
//  }

//  if (form.ProjectBudget.value == "") {
//    alert( "Projected budget for this project.");
//    form.ProjectBudget.focus();
//    return false;
//  }

  if (form.NoOfPages.value == "") {
    alert( "Select numbers of pages.");
    form.NoOfPages.focus();
    return false;
  }

// if (form.Comments.value == "") {
//    alert( "Please write your enquiry into the \"Comments\" field.");
//    form.Comments.focus();
//    return false;
//  }

   return true;
}
//-->