function checkform(f)
{

	if (null!=f.strFIO)
	{
		if (isEmpty(f.strFIO.value))
		{
			alert("Пожалуйста, введите ФИО");
			f.strFIO.focus();
			return false;
		}
	}
	if (null!=f.strTel)
	{
		if (isEmpty(f.strTel.value))
		{
			alert("Пожалуйста, введите телефон");
			f.strTel.focus();
			return false;
		}
	}
	if (null!=f.strEmail)
	{
		if (isEmpty(f.strEmail.value))
		{
			alert("Пожалуйста, введите Ваш e-mail");
			f.strEmail.focus();
			return false;
		}
	}

}

function isEmpty(str)
{
	for (var i = 0; i < str.length; i++)
	if (" " != str.charAt(i))
	return false;
	return true;
}

function delete_alert()
{
	if (confirm("Вы уверены, что хотите удалить эту информацию?")) return true
	else return false;
}

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->

/*<!--var message="Копирование запрещено. Авторские права принадлежат компании Adrionika.";
			function clickIE4(){
			if (event.button==2){
					alert(message);
					return false;
				}
			}
			function clickNS4(e){
				if (document.layers||document.getElementById&&!document.all){
					if (e.which==2||e.which==3){
						alert(message);
						return false;
					}
				}
			}
			if (document.layers){
				document.captureEvents(Event.MOUSEDOWN);
				document.onmousedown=clickNS4;
			}
			else if (document.all&&!document.getElementById){
				document.onmousedown=clickIE4;
			}
			document.oncontextmenu=new Function("alert(message);return false")-->*/


