<!--
isNS4 = (document.layers) ? true : false;
isIE4 = (document.all && !document.getElementById) ? true : false;
isIE5 = (document.all && document.getElementById) ? true : false;
isNS6 = (!document.all && document.getElementById) ? true : false;

function g(myid) {
if (isNS4){
objElement = document.layers[myid];
}else if (isIE4) {
objElement = document.all[myid];
}else if (isIE5 || isNS6) {
objElement = document.getElementById(myid);
}
return(objElement);
}

function sf () {
fid="fsform";

if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
	fnm = g(fid);
}
else {
	fnm = document.forms[fid];
}

if(fnm.fmsg.value == "")
{
	fnm.fname.style.background="#ffffff";
	fnm.fmsg.style.background="#FFEAE0";
	alert("Пожалуйста, введите текст комментария");
	fnm.fmsg.focus();
	return false;
}


if((fnm.fname.value == "")||(fnm.fname.value == "Ваше имя"))
{
	fnm.fname.style.background="#FFEAE0";
	fnm.fmsg.style.background="#ffffff";
	alert("Пожалуйста, введите Ваше имя");
	fnm.fname.focus();
	return false;
}


return true;
}

function h() {
dnm = g("s");
dnm.style.top=0;
dnm.style.left=0;
}

//-->
