
function openWin(n) {
var features, w = 600, h = 400;
var top = (screen.height - h)/2, left = (screen.width - w)/2;
if(top < 0) top = 0;
if(left < 0) left = 0;
features = 'top=' + top + ',left=' +left;
features += ',height=' + h + ',width=' + w + ',resizable=no';
myWin = open(n, 'displayWindow', features);
}

function clos(){  
	window.location.href = "index.php";
	}
function valid() {
reg = /[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?/;
if(document.form1.iname.value=="" || document.form1.imail.value=="" || document.form1.iphone.value=="")
{
	alert('Пожалуйста заполните все поля');
}else{
	
	if (!document.form1.imail.value.match(reg)) {alert("Пожалуйста, введите правильный e-mail"); 
	return false; 
	}else{


document.form1.submit();
}
}
}

