	function open_window(link,w,h) //opens new window
	{
		var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
		newWin = window.open(link,'newWin',win);
		newWin.focus();
	}

	function confirmDelete() //unsubscription confirmation
	{
		temp = window.confirm("Удалить ?");
		if (temp) //delete
		{
			window.location="index.php?killuser=yes";
		}
	}

	function validate_custinfo() //validate customer information

	{
		if (document.custinfo_form.first_name.value=="" || document.custinfo_form.last_name.value=="")
		{
			alert("Введите Имя и Фамилию !");
			return false;
		}
		if (document.custinfo_form.email.value=="")
		{
			alert("Введите адрес электронной почты");
			return false;
		}
		if (document.custinfo_form.country.value=="")
		{
			alert("Введите название страны");
			return false;
		}
		if (document.custinfo_form.state.value=="")
		{
			alert("Введите область");
			return false;
		}
		if (document.custinfo_form.zip.value=="")
		{
			alert("Введите почтовый индекс");
			return false;
		}
		if (document.custinfo_form.city.value=="")
		{
			alert("Введите название города");
			return false;
		}
		if (document.custinfo_form.keystring.value == "" )
		{
			alert("код");
			return false;
		}
		if (document.custinfo_form.keystring.value != a )
		{
			alert("код");
			return false;
		}
              


  
   

		return true;
	}

