
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////	
function openWin(page){
	w = 480;
	h = 450;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=1,resizable=0,location=0,status=1,menubar=0,toolbar=0'
	win = window.open(page, "", winprops);
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////	


function validateMyForm(){
	var x = document.getElementById('myForm').getElementsByTagName("input");
	var ob; //object
	var errCount = 0;

	
	for(i = 0; i < x.length; i++){
		ob = x[i].value;
		if(ob.length == 0){
			x[i].style.backgroundColor="#f9f9dd";
			errCount++;
		}
		else if(i == 2){	//Email check
			var email = ob.match("@");
			if(email == null){
				x[i].style.backgroundColor="#f9f9dd";	
				errCount++;
			}
		}
		else{
				x[i].style.backgroundColor="#fff";
			}
		
	}
	var x = document.getElementById('myForm').getElementsByTagName("select");
	for(i = 0; i < x.length; i++){
		ob = x[i].value;
		if(ob.length == 0){
			x[i].style.backgroundColor="#f9f9dd";		
			errCount++;
		}
		else {
			x[i].style.backgroundColor="#fff";	
		}
	}
	
	if(errCount == 0){
		return true;
	}
	else{
		alert("אנא וודא כי הזן את כל הפרטים בטרם שליחת הטופס");
		return false;
	}
}


