function kont(){
cevap=''
hata=''

	if (document.getElementById('tedadi').value=='')
		{
		document.getElementById('tedadi').style.backgroundColor= 'FFFF66'
		cevap= cevap + "\n* Tedarikçi alanı."
		hata=hata + 1
		}
	if (document.getElementById('irtibatkisi').value=='')
		{
		document.getElementById('irtibatkisi').style.backgroundColor= 'FFFF66'
		cevap= cevap + "\n* İrtibat Kişi alanı."
		hata=hata + 1
		}
	if (document.getElementById('adres').value=='')
		{
		document.getElementById('adres').style.backgroundColor= 'FFFF66'
		cevap= cevap + "\n* Adres alanı."
		hata=hata + 1
		}
	if (document.getElementById('tel').value=='')
		{
		document.getElementById('tel').style.backgroundColor= 'FFFF66'
		cevap= cevap + "\n* Telefon alanı."
		hata=hata + 1
		}
	if (document.getElementById('faks').value=='')
		{
		document.getElementById('faks').style.backgroundColor= 'FFFF66'
		cevap= cevap + "\n* Faks alanı."
		hata=hata + 1
		}
	if (document.getElementById('sehir').value=='')
		{
		document.getElementById('sehir').style.backgroundColor= 'FFFF66'
		cevap= cevap + "\n* Şehir alanı."
		hata=hata + 1
		}
	if (document.getElementById('vdairesi').value=='')
		{
		document.getElementById('vdairesi').style.backgroundColor= 'FFFF66'
		cevap= cevap + "\n* Vergi Dairesi alanı."
		hata=hata + 1
		}
	if (document.getElementById('vergino').value=='')
		{
		document.getElementById('vergino').style.backgroundColor= 'FFFF66'
		cevap= cevap + "\n* Vergi No alanı."
		hata=hata + 1
		}
	if (document.getElementById('faliyetsektor').value=='')
		{
		document.getElementById('faliyetsektor').style.backgroundColor= 'FFFF66'
		cevap= cevap + "\n* Faaliyet Sektörü alanı."
		hata=hata + 1
		}
	if (document.getElementById('urungrup').value=='')
		{
		document.getElementById('urungrup').style.backgroundColor= 'FFFF66'
		cevap= cevap + "\n* Ürün Grubu alanı."
		hata=hata + 1
		}
	if (document.getElementById('dolduranadi').value=='')
		{
		document.getElementById('dolduranadi').style.backgroundColor= 'FFFF66'
		cevap= cevap + "\n* Formu Dolduran Yetkilinin Adı Soyadı alanı."
		hata=hata + 1
		}
	if (document.getElementById('doldurangorevi').value=='')
		{
		document.getElementById('doldurangorevi').style.backgroundColor= 'FFFF66'
		cevap= cevap + "\n* Formu Dolduran Yetkilinin Görevi alanı."
		hata=hata + 1
		}


	if (hata !='')
		{
		alert("Aşağıdaki zorunlu alanları boş bıraktınız.\n--------------------------------------------------" + cevap + "\n\nLütfen, listelenen alanları kontrol edip tekrar deneyin.");
		return false; 
		}
	else
		{
		return true;	
		}
	
}
