function ContactValidation(ContactUsForm)
{
	if(isEmpty(ContactUsForm.ContactUs_Name.value))
		{
			alert("Name should not be empty");
			ContactUsForm.ContactUs_Name.focus();
			return false;
		}
		if(!isUserName(ContactUsForm.ContactUs_Name.value))
		{
			alert("Invalid characters found in Name");
			ContactUsForm.ContactUs_Name.focus();
			return false;
		}
	if(isEmpty(ContactUsForm.ContactUs_Email.value))
		{
			alert("Email Address should not be empty");
			ContactUsForm.ContactUs_Email.focus();
			return false;
		}
		if(!isEmailAddr(ContactUsForm.ContactUs_Email.value, "Email Address"))
		{
			ContactUsForm.ContactUs_Email.focus();
			return false;
		}
	if(isEmpty(ContactUsForm.ContactUs_Subject.value))
		{
		alert("Please Enter the Subject");
		ContactUsForm.ContactUs_Subject.focus();
		return false;
		}
	if(isEmpty(ContactUsForm.ContactUs_Message.value))
		{
			alert("Please Enter the Message");
			ContactUsForm.ContactUs_Message.focus();
			return false;
		}
	if(isEmpty(ContactUsForm.ContactUs_Verification.value))
		{
			alert("Please Enter the Verification Code");
			ContactUsForm.ContactUs_Verification.focus();
			return false;
		}
	ContactUsForm.fAction.value="PostRequest";
}
function ValidateSchedule(Scheduleform){
	if(isEmpty(Scheduleform.ScheduleForm_Name.value))
		{
			alert("Name should not be empty");
			Scheduleform.ScheduleForm_Name.focus();
			return false;
		}
		if(!isUserName(Scheduleform.ScheduleForm_Name.value))
		{
			alert("Invalid characters found in Name");
			Scheduleform.ScheduleForm_Name.focus();
			return false;
		}
	if(isEmpty(Scheduleform.ScheduleForm_Email.value))
		{
			alert("Email Address should not be empty");
			Scheduleform.ScheduleForm_Email.focus();
			return false;
		}
		if(!isEmailAddr(Scheduleform.ScheduleForm_Email.value, "Email Address"))
		{
			Scheduleform.ScheduleForm_Email.focus();
			return false;
		}
	if(isEmpty(Scheduleform.ScheduleForm_Date.value))
		{
		alert("Please Select the Date");
		Scheduleform.ScheduleForm_Date.focus();
		return false;
		}
	if(isEmpty(Scheduleform.scheduleformphone1.value))
		{
		alert("Please Enter the Phone Number");
		Scheduleform.scheduleformphone1.focus();
		return false;
		}
	if(isEmpty(Scheduleform.scheduleformphone2.value))
		{
		alert("Please Enter the Phone Number");
		Scheduleform.scheduleformphone2.focus();
		return false;
		}
	if(isEmpty(Scheduleform.scheduleformphone3.value))
		{
		alert("Please Enter the Phone Number");
		Scheduleform.scheduleformphone3.focus();
		return false;
		}
	if(isEmpty(Scheduleform.ScheduleForm_VerificationCode.value))
		{
			alert("Please Enter the Verification Code");
			Scheduleform.ScheduleForm_VerificationCode.focus();
			return false;
		}
	}
	function ValidateEmailLink(EmailLinkForm){
		if(isEmpty(EmailLinkForm.EmailLinkForm_SenderName.value))
			{
				alert("Please enter your Name");
				EmailLinkForm.EmailLinkForm_SenderName.focus();
				return false;
			}
			if(!isUserName(EmailLinkForm.EmailLinkForm_SenderName.value))
			{
				alert("Invalid characters found in Name");
				EmailLinkForm.EmailLinkForm_SenderName.focus();
				return false;
			}
		if(isEmpty(EmailLinkForm.EmailLinkForm_SenderEmail.value))
			{
				alert("Plesae enter Email Address ");
				EmailLinkForm.EmailLinkForm_SenderEmail.focus();
				return false;
			}
			if(!isEmailAddr(EmailLinkForm.EmailLinkForm_SenderEmail.value, "Email Address"))
			{
				EmailLinkForm.EmailLinkForm_SenderEmail.focus();
				return false;
			}
		if(isEmpty(EmailLinkForm.EmailLinkForm_ToName.value))
			{
				alert("Name should not be empty");
				EmailLinkForm.EmailLinkForm_ToName.focus();
				return false;
			}
			if(!isUserName(EmailLinkForm.EmailLinkForm_ToName.value))
			{
				alert("Invalid characters found in Name");
				EmailLinkForm.EmailLinkForm_ToName.focus();
				return false;
			}
		if(isEmpty(EmailLinkForm.EmailLinkForm_ToEmail.value))
			{
				alert("Email Address should not be empty");
				EmailLinkForm.EmailLinkForm_ToEmail.focus();
				return false;
			}
			if(!isEmailAddr(EmailLinkForm.EmailLinkForm_ToEmail.value, "Email Address"))
			{
				EmailLinkForm.EmailLinkForm_ToEmail.focus();
				return false;
			}
		/*	if(isEmpty(EmailLinkForm.EmailLinkForm_Comments.value))
			{
				alert("Please Enter the Comments");
				EmailLinkForm.EmailLinkForm_Comments.focus();
				return false;
			}*/
	}
	function ValidateSaveCheckbox(SaveProperty){
		if(!SaveProperty.SavePro_Check.checked)
		{
		alert("Please Check the Checkbox to Save the Property");
		SaveProperty.SavePro_Check.focus();
		return false;
		}
	}
	function ValidateUnSaveCheckbox(UnSaveProperty){
		if(!UnSaveProperty.UnSavePro_Check.checked)
		{
		alert("Please Check the Checkbox to UnSave the Property");
		UnSaveProperty.UnSavePro_Check.focus();
		return false;
		}else{
			if(confirm("Are You Sure to Unsave this Property")){
				return true;
			}
		}
	}