function validate_Contact_form()
{
	var error=0;

	document.form1.firstname.style.background = "#fbf6a1";
	document.form1.lastname.style.background = "#fbf6a1";
	document.form1.organization.style.background = "#fbf6a1";
	document.form1.phone.style.background = "#fbf6a1";
	document.form1.email.style.background = "#fbf6a1";

	if (document.form1.firstname.value == "") {
		document.form1.firstname.style.background = "#ff9999";
		error=1;
	}
	if (document.form1.lastname.value == "") {
		document.form1.lastname.style.background = "#ff9999";
		error=1;
	}
	if (document.form1.organization.value == "") {
		document.form1.organization.style.background = "#ff9999";
		error=1;
	}
	if (document.form1.phone.value == "") {
		document.form1.phone.style.background = "#ff9999";
		error=1;
	}
	if (document.form1.email.value == "") {
		document.form1.email.style.background = "#ff9999";
		error=1;
	}

	if (error==1)
	{
		alert("Please fill out all required fields (Mark with *).");
		return false;
	}


	return true;

}

function validate_Refer_form()
{
	var error=0;

	document.form1.fname.style.background = "#fbf6a1";
	document.form1.femail.style.background = "#fbf6a1";
	document.form1.temail.style.background = "#fbf6a1";

	if (document.form1.fname.value == "") {
		document.form1.fname.style.background = "#ff9999";
		error=1;
	}
	if (document.form1.femail.value == "") {
		document.form1.femail.style.background = "#ff9999";
		error=1;
	}
	if (document.form1.temail.value == "") {
		document.form1.temail.style.background = "#ff9999";
		error=1;
	}

	if (error==1)
	{
		alert("Please fill out all required fields (Mark with *).");
		return false;
	}


	return true;

}