//(c) All rights reserved to Oded Joni

<!--
function estimateFormCheck() {
	var frm = document.getElementById("estimateForm");

	if (frm.fullName.value.length<3) {
		alert('Please fill in a valid Full Name');
		frm.fullName.focus();
		return false;
		}

	var ph = frm.phoneNumber.value.replace( /[^\d]/g, "" );
	if ( ph.length != 10 ) {
		alert('Please fill in a valid Phone Number (including area code)');
		frm.phoneNumber.focus();
		return false;
	}

	if(frm.email.value != "") {
		if (!(/^\w+([\.]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})$/.test(frm.email.value))) {
			alert('Please Enter a Valid E-Mail Address');
			frm.email.focus();
			return false;
			}
		}
}
//-->

<!--
function liamdnes(m) {
	window.location = 'm'+String.fromCharCode(97)+'ilto'+String.fromCharCode(58)+m+String.fromCharCode(64)+'reformastodocasa'+String.fromCharCode(46)+'com';
}
//-->

<!--
function newWindow(url, name, w, h) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'width='+w+',height='+h+',top='+wint+',left='+winl
	win = window.open(url, name, winprops)
}
//-->

<!--
onload=function() {
	document.getElementById("fullName").focus();
}
//-->
