function validate_suggestion () {

	if (document.form1.mysuggestion.value == "")
	{
			alert ("Please make a suggestion before proceeding.");
			return false;

	}



	return true;
}


function validate_add_hajj_company () {

	if (document.form1.myname.value == "")
	{
			alert ("Please enter the name of the hajj company.");
			return false;

	}

	if (document.form1.mycountry.value == "")
	{
			alert ("Please enter the country of the hajj company.");
			return false;

	}
	
	if (document.form1.mystate.value == "")
	{
			alert ("Please enter the state/province of the hajj company.");
			return false;

	}
	if (document.form1.mycity.value == "")
	{
			alert ("Please enter the city of the hajj company.");
			return false;

	}
	if (document.form1.mywebsite.value == "")
	{
			alert ("Please enter the website of the hajj company.");
			return false;

	}
	if (document.form1.myphone.value == "")
	{
			alert ("Please enter the phone number of the hajj company.");
			return false;

	}


	return true;
}



