<!--

function sf () {

fid="fsform";

if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
	fnm = g(fid);
}
else {
	fnm = document.forms[fid];
}

if(fnm.name.value == "")
{
	fnm.name.style.background="#221919";
	fnm.em.style.background="#666666";
	fnm.msg.style.background="#666666";
	alert("Please enter your name");
	fnm.name.focus();
	return false;
}

if(fnm.em.value == "")
{
	fnm.em.style.background="#221919";
	fnm.name.style.background="#666666";
	fnm.msg.style.background="#666666";
	alert("Please enter your email");
	fnm.em.focus();
	return false;
}

if(fnm.msg.value == "")
{
	fnm.name.style.background="#666666";
	fnm.em.style.background="#666666";
	fnm.msg.style.background="#221919";
	alert("Please enter your comment");
	fnm.msg.focus();
	return false;
}

return true;
}

//-->

