	if (window != top) top.location.href = location.href;
	
	function FuckIt() {return false;};
	document.oncontextmenu = FuckIt;
	
	var OmitFormTags=["input", "textarea", "select"];
	OmitFormTags=OmitFormTags.join("|");
	function DisableSelect(e)
	{
		if (OmitFormTags.indexOf(e.target.tagName.toLowerCase())==-1)
			return false;
	}
	if (typeof document.onselectstart!="undefined")
		document.onselectstart=FuckIt
	else
	{
		document.onmousedown=DisableSelect;
		document.onmouseup=FuckIt;
	}
	
	function loadphoto(jpgname)
	{
		subw=window.open('subw.php?jpgname='+jpgname, 'SubW', 'width=512, height=384, status=0, resizable=0');
	}
	
	function FrontPage_Form1_Validator(theForm)
	{
  if (theForm.first_name.value == "")
  {
	alert("Введите \"Имя\".");	theForm.first_name.focus();	return (false);
  }
  if (theForm.family_name.value == "")
  {
	alert("Введите \"Фамилия\".");	theForm.family_name.focus();	return (false);
  }
  if (theForm.email.value == "")
  {
	alert("Введите \"E-mail\".");	theForm.email.focus();	return (false);
  }
  if (theForm.country.value == "")
  {
	alert("Введите \"Город\".");	theForm.country.focus();	return (false);
  }
  return (true);
	}
