// Netfirma Bilisim. - Mustafa Çördük  
function temizle()
		{ 
		document.getElementById('frm_by').reset();document.frm_by.ad.focus(); hata.innerHTML='&nbsp;'; 
		document.frm_by.ad.id="hat1";
		document.frm_by.eposta.id="hat1";
		document.frm_by.tel.id="hat1";
		}

function kontrol() {
	var eksik=''
	hata.innerHTML=''
		
	if (document.frm_by.eposta.value=="")
		{
		eksik=' E-mail,' + eksik
		document.frm_by.eposta.id="hat";
		document.frm_by.eposta.focus();
		}
	else if (document.frm_by.eposta.value.indexOf('@',0)<1)
		{
		eksik=' E-posta adresi geçersiz,' + eksik
		document.frm_by.eposta.focus();
		document.frm_by.eposta.id="hat";
		}
		else document.frm_by.eposta.id="hat1";
	
	if (document.frm_by.tel.value=="")
		{
		eksik=' Telefon' + eksik
		document.frm_by.tel.id="hat";
		document.frm_by.tel.focus();
		}
	else document.frm_by.tel.id="hat1";
	
	if (document.frm_by.ad.value=="")
		{
		eksik='Ady,' + eksik
		document.frm_by.ad.id="hat";
		document.frm_by.ad.focus();
		}
		else document.frm_by.ad.id="hat1";
	
   if (eksik.length>1)
   {
	hata.innerHTML='<font size="2"><img src="hata.gif"> * Lütfen eksik alanları doldurunuz...'
	}	
	else
   	{
		hata.innerHTML='&nbsp;'
		document.frm_by.ad.id="hat1";
		document.frm_by.eposta.id="hat1";
		document.frm_by.tel.id="hat1";
		document.frm_by.submit();
	}
	
	
}

