function openwin()
{
	NewWindow =window.open("hebrew.htm","hebrew","width=500,height=200")
}
function submitit(){
	var email=document.subform.email.value;
	if (email==""){
		alert("Please type your Email")
		document.subform.email.focus()
		return false
	}
	if (email.indexOf('@', 0) == -1 || email.indexOf('.', 0) == -1){
		alert("Invalid e-mail address!");
		document.subform.email.value=""
		document.subform.email.focus()
		return false
	}
}