
function popWindow1(filename) { window.open(filename,"",",resizable=yes,top=21,left=0,") }
function popWindow2(filename) { window.open(filename,"",",resizable=yes,width=400,height=400,top=21,left=0,") }

function goVisitSite(Site)
{
	NewWindow1 = window.open(Site,
		"",
		"toolbar=0,width=780,height=540,resizable=no");

}

function winFocus1()
{
status = window.open('foto/1941/04.php','win2','top=21,left=0,width=620, height=170');
}


function isEmail(str)
{
	var r1 = new RegExp("(@.*@)|(\\.\\.)|(@\\.)|(^\\.)")
	var r2 = new RegExp("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$")
	return (!r1.test(str) && r2.test(str))
}

function validate_query(form) {

	if ( form.name.value == '' ) {
		alert("Введите ваше имя или название организации")
		form.text.focus()
		return false
	}

	if (form.town.value =='' ) {
		alert("Введите Вашь город, населённый пункт")
		form.text.focus()
		return false
	}

	if ( form.text.value == '' ) {
		alert("Введите текст сообщения")
		form.text.focus()
		return false
	}
	alert('Спасибо. Сообщение отправлено, и будет размещено на сайте в ближайшие дни!');
	return true
}
