//(c) All rights reserved to Oded Joni

<!--
function infoCheck(frm) {
	if (frm.fullName.value.length<2) {
		alert('נא להזין שם ');
		frm.fullName.focus();
		return false;
		}

	var ph = frm.phone.value.replace( /[^\d]/g, "" );
	if (ph.length<9) {
		alert("נא להזין מס' טלפון/נייד- כולל קידומת");
		frm.phone.focus();
		return false;
		}

	if (!(/^\w+([\.]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})$/.test(frm.email.value))) {
		alert('נא להזין כתובת דוא"ל');
		frm.email.focus();
		return false;
	}

	return (true);
}
//-->

<!--
function newWindow(url, name, scrl, w, h) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'scrollbars='+scrl+',height='+h+',width='+w+',top='+wint+',left='+winl
	win = window.open(url, name, winprops)
}
//-->

<!--
onload=function() {
	document.getElementById("fullName").focus();
}
//-->

