function MSGFormDetect()
{
if (document.MSG.isimsoyad.value=='')
{alert("Lütfen İsminizi Yazınız");
MSG.isimsoyad.focus();
return false;
}

if (document.MSG.eposta.value=='')
{alert("Lütfen E-Posta Adresinizi Yazınız");
MSG.eposta.focus();
return false;
}

if (document.MSG.eposta.value.indexOf('@')<1)
{alert("Lütfen Geçerli Bir E-Posta Adresi Yazınız!");
MSG.eposta.focus();
return false;
}

if (document.MSG.eposta.value.indexOf('.')<1)
{alert("Lütfen Geçerli Bir E-Posta Adresi Yazınız!");
MSG.eposta.focus();
return false;
}

if (document.MSG.Msj.value=='')
{alert("Lütfen Mesajınızı Yazınız!");
MSG.Msj.focus();
return false;
}
return true;
}

function IKFormDetect()
{
if (document.IK.isimsoyad.value=='')
{alert("Lütfen İsminizi Yazınız!");
IK.isimsoyad.focus();
return false;
}

if (document.IK.eposta.value=='')
{alert("Lütfen E-Posta Adresinizi Yazınız!");
IK.eposta.focus();
return false;
}

if (document.IK.eposta.value.indexOf('@')<1)
{alert("Lütfen Geçerli Bir E-Posta Adresi Yazınız!");
IK.eposta.focus();
return false;
}

if (document.IK.eposta.value.indexOf('.')<1)
{alert("Lütfen Geçerli Bir E-Posta Adresi Yazınız!");
IK.eposta.focus();
return false;
}

return true;
}
