function validateForm()
	{
		var phone=document.forms["rightContact"]["phone"].value;
		var name=document.forms["rightContact"]["name"].value;
		var isOK=1;
		if(phone=="" || phone=="טלפון..." || phone=="אנא השאר טלפון" || phone=="מספר טלפון אינו חוקי")
		{
			document.forms["rightContact"]["phone"].value="אנא השאר טלפון";
			document.forms["rightContact"]["phone"].style.color="red";
			isOK=0;
		}
		else		
			if(phone.length < 9)
			{
				document.forms["rightContact"]["phone"].value="מספר טלפון אינו חוקי";
				document.forms["rightContact"]["phone"].style.color="red";
				isOK=0;
			}			
		if(name=="" || name=="שם..." || name=="אנא השאר שם")
		{
			document.forms["rightContact"]["name"].value="אנא השאר שם";
			document.forms["rightContact"]["name"].style.color="red";
			isOK=0;
		}			
				
		if(isOK)
			return true;
		else		
			return false;		
	}
