<!-- Copyright (c) 2006 Jaipur Software -->

<!--
function checkform()
{

  if (f1.name.value == "") {  
	alert( "Please write your name in the \"Name\" field.");
    f1.name.focus();
    return false ;
  }

  if (f1.country.value == "") {
    alert( "Please select your country in the \"Country\" field.");
    f1.country.focus();
    return false ;
  }

  if (!f1.email.value.match(/.+\@.+\..+/i))
	{
	alert("Please write your email address in the \"Email\" field.");
	f1.email.focus();
	return false;
	}

  if (f1.services.value == "") {
    alert( "Please select the services in which you are interested.");
    f1.services.focus();
    return false;
  }

	var radioSelected = false;
	for (i = 0;  i < f1.domain.length;  i++)
	{
	if (f1.domain[i].checked)
	radioSelected = true;
	}
	if (!radioSelected)
	{
	alert("Do you want to register your domain name with us?");
	f1.domain[0].focus() ;
	return (false);
	}


	var radioSelected = false;
	for (i = 0;  i < f1.havehost.length;  i++)
	{
	if (f1.havehost[i].checked)
	radioSelected = true;
	}
	if (!radioSelected)
	{
	alert("Do you currently have hosting provider? If yes, please write the name.");
	f1.havehost[0].focus() ;
	return (false);
	}

  if (f1.profile.value == "") {
    alert( "Please briefly describe your company/organization profile.");
    f1.profile.focus();
    return false;
  }

  if (f1.currency.value == "") {
    alert( "Which currency your would like to pay?");
    f1.currency.focus();
    return false;
  }

  if (f1.amount.value == "") {
    alert( "Projected budget for this project.");
    f1.amount.focus();
    return false;
  }

  if (f1.numpages.value == "") {
    alert( "Select numbers of pages.");
    f1.numpages.focus();
    return false;
  }

  if (f1.reference.value == "") {
    alert( "Please tell us how did you find our site?");
    f1.reference.focus();
    return false;
  }

 if (f1.comments.value == "") {
    alert( "Please write your enquiry into the \"Comments\" field.");
    f1.comments.focus();
    return false;
  }

   return true ;
}
//-->