function formvalidation(formname) {
	Fullname=document.getElementById('Fullname').value;
	EmailAddress=document.getElementById('EmailAddress').value;
	Telephone=document.getElementById('Telephone').value;
	if ((Fullname=='')||(EmailAddress=='')||(Telephone=='')) {
		alert('Please fill in mandatory fields');
		return false;
	} else {
		return true;
	}
}
function formvalidation_heb() {
	Fullname=document.getElementById('Fullname').value;
	EmailAddress=document.getElementById('EmailAddress').value;
	Telephone=document.getElementById('Telephone').value;
	if ((Fullname=='')||(EmailAddress=='')||(Telephone=='')) {
		alert('נא למלא את כל שדות החובה המסומנים בכוכבית');
	} else {
		document.getElementById('memoform').submit();
	}	
}
