// JavaScript Document
function mesajkontrol()
{
	if ((document.mesajformu.adsoyad.value == '') || (document.mesajformu.email.value == '') || (document.mesajformu.konu.value == '')  || (document.mesajformu.mesaj.value == ''))
	{
		alert('Lutfen Zorunlu Alanlari Bos Birakmayiniz!');
		return false;
		}
		else 
		{
			return true;
			}
}