		function F(obj, on){
		 if(on) obj.style.background='#FFCC00'
		   else obj.style.background='#FFFFFF';
		}
<!--
function FrontPage_Form1_Validator(theForm)
{
  if (theForm.isim.value == "")
  {
    alert("Lütfen Adınızı ve Soyadınızı giriniz.");
    theForm.isim.focus();
    return (false);
  }
  
  if (theForm.email.value == "")
  {
    alert("Lütfen Email adresinizi giriniz.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.email.value.length < 1)
  {
    alert("Lütfen Email adresinizi giriniz.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.email.value.length > 50)
  {
    alert("Lütfen email adresiniz 50 karakterden uzun olmasın.");
    theForm.email.focus();
    return (false);
  }

  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_.-0123456789@";
  var checkStr = theForm.email.value;
  var allValid = true;
  var validGroups = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("Lütfen Email adresinizi kontrol ediniz.");
    theForm.email.focus();
    return (false);
  }

  var checkStr = theForm.email.value;
  var allValid = false;
  for (i = 0;  i < checkStr.length;  i++)
   {
	if (checkStr.charAt(i) == "@")
	  {
		allValid = true;	
	  }
	}
	  
  if (!allValid)
  {
    alert("Lütfen Email adresinizi kontrol ediniz.");
    theForm.email.focus();
    return (false);
  }

  var checkStr = theForm.email.value;
  var allValid = false;
  for (i = 0;  i < checkStr.length;  i++)
   {
	if (checkStr.charAt(i) == ".")
	  {
		allValid = true;	
	  }
	}
	  
  if (!allValid)
  {
    alert("Lütfen Email adresinizi kontrol ediniz.");
    theForm.email.focus();
    return (false);
  }


  if (theForm.yorum.value == "")
  {
    alert("Lütfen Yorumunuzu giriniz.");
    theForm.yorum.focus();
    return (false);
  }

  if (theForm.yorum.value.length < 5)
  {
    alert("Lütfen Yorumunuzu giriniz.");
    theForm.yorum.focus();
    return (false);
  }
  return (true);
}
//-->
