if (document.location.hostname != "www.getrich.co.il")
		document.location="http://www.getrich.co.il"
		+document.location.pathname+document.location.search+document.location.hash;

var lessons = readCookie("lessons");
if (lessons)
	{ eraseCookie("lessons");
	   alert("השיעור הראשון כבר בדרך אליך");
	   }
	   


function responder_validation(form) {
	var inputs = document.getElementById(form).getElementsByTagName('input');
	var filter = /^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+){1,4}$/;

	
	for (a=0; a<inputs.length; a++) {
		switch (inputs[a].name) {
			case 'fields[subscribers_email]':
				if (!filter.test(inputs[a].value)) {
					alert('כתובת הדוא"ל אינה חוקית');
					inputs[a].focus();
					return false;
				}
				break;
				
			case 'where':
				createCookie("where",document.location.pathname+"#"+inputs[a].value,30);
				break;
		}
	}
	createSafeCookie("where",document.location.pathname+"#"+form,30);
	
	return true;
}

function checkAction() {

	var action = getQueryVariable('action');
	
	if (action == "order")
		document.location="address.htm";
}


