<!--
function setColor(el)
{
	if (el.style) el.style.backgroundColor = "#FFFFCC"; // sari
}


function unsetColor(el)
{
	if (el.style) el.style.backgroundColor = "#ffffff"; // beyaz
}

function sunumformCheck()
	{
	
	if ((document.sunumformu.kurum.value ==  "")||(document.sunumformu.kurum.value.length < 3)) 
 		{	alert("Kurum adını giriniz.");
		setColor(document.sunumformu.kurum);
 		document.sunumformu.kurum.focus();
 		return false; }else{unsetColor(document.sunumformu.kurum);}
	
	if ((document.sunumformu.faaliyet.value ==  "")||(document.sunumformu.faaliyet.value.length < 3)) 
 		{	alert("Faaliyet alanınızı giriniz.");
		setColor(document.sunumformu.faaliyet);
 		document.sunumformu.faaliyet.focus();
 		return false; }else{unsetColor(document.sunumformu.faaliyet);}
		
	if ((document.sunumformu.adsoyad.value ==  "")||(document.sunumformu.adsoyad.value.length < 3)) 
 		{	alert("Yetkili kişinin adı ve soyadını giriniz.");
		setColor(document.sunumformu.adsoyad);
 		document.sunumformu.adsoyad.focus();
 		return false; }else{unsetColor(document.sunumformu.adsoyad);}
		
	if ((document.sunumformu.gorev.value ==  "")||(document.sunumformu.gorev.value.length < 3)) 
 		{	alert("Kurumdaki görevinizi giriniz.");
		setColor(document.sunumformu.gorev);
 		document.sunumformu.gorev.focus();
 		return false; }else{unsetColor(document.sunumformu.gorev);}


	if (document.sunumformu.email.value == '')
	  {
	    alert("Lütfen e-mail adresinizi giriniz.");
		setColor(document.sunumformu.email);
		document.sunumformu.email.focus();
	    return false;
	  }else{unsetColor(document.sunumformu.email);}
	
	if (window.RegExp)
	  {
	    var r1 = new RegExp("^[a-zA-Z0-9\-\.\_]+@[a-zA-Z0-9\-\_]+\.+[a-zA-Z0-9]+$");
	    if (r1.test(document.sunumformu.email.value) == false)
	    {
	      alert ("E-mail adresinizi eksik veya yanlış yazdınız.");
		  setColor(document.sunumformu.email);
		  document.sunumformu.email.focus();

	      return false;
	    }else{unsetColor(document.sunumformu.email);}
	  }
	  
	  if ((document.sunumformu.tel_kod_sabit.value ==  "")||(document.sunumformu.tel_kod_sabit.value.length < 3)) 
 		{	alert("Lütfen ev veya iş telefonunuzun alan kodunu giriniz.");
		setColor(document.sunumformu.tel_kod_sabit);
 		document.sunumformu.tel_kod_sabit.focus();
 		return false; }else{unsetColor(document.sunumformu.tel_kod_sabit);}
		
	if ((document.sunumformu.tel_sabit.value ==  "")||(document.sunumformu.tel_sabit.value.length < 7)) 
 		{	alert("Lütfen ev veya iş telefon numaranızı yazınız.");
		setColor(document.sunumformu.tel_sabit);
 		document.sunumformu.tel_sabit.focus();
 		return false; }else{unsetColor(document.sunumformu.tel_sabit);}
		
	if ((document.sunumformu.tel_kod_cep.value ==  "")||(document.sunumformu.tel_kod_cep.value.length < 3)) 
 		{	alert("Lütfen cep telefonunuzun GSM kodunu giriniz.");
		setColor(document.sunumformu.tel_kod_cep);
 		document.sunumformu.tel_kod_cep.focus();
 		return false; }else{unsetColor(document.sunumformu.tel_kod_cep);}
		
	if ((document.sunumformu.tel_cep.value ==  "")||(document.sunumformu.tel_cep.value.length < 7)) 
 		{	alert("Lütfen cep telefonu numaranızı yazınız.");
		setColor(document.sunumformu.tel_cep);
 		document.sunumformu.tel_cep.focus();
 		return false; }else{unsetColor(document.sunumformu.tel_cep);}
		
	if ((document.sunumformu.lokasyon.value ==  "")||(document.sunumformu.lokasyon.value.length < 3)) 
 		{	alert("Lütfen lokasyon bilgilerinizi giriniz.");
		setColor(document.sunumformu.lokasyon);
 		document.sunumformu.lokasyon.focus();
 		return false; }else{unsetColor(document.sunumformu.lokasyon);}
		
	if ((document.sunumformu.nerden.value ==  "")) 
 		{	alert("Lütfen bizi nereden duyduğunuzu belirtiniz.");
		setColor(document.sunumformu.nerden);
 		document.sunumformu.nerden.focus();
 		return false; }else{unsetColor(document.sunumformu.nerden);}
		
	if ((document.sunumformu.dt_gun.value ==  "")) 
 		{	alert("Lütfen sunumun yapılmasını istediğiniz GÜNü seçiniz.");
		setColor(document.sunumformu.dt_gun);
 		document.sunumformu.dt_gun.focus();
 		return false; }else{unsetColor(document.sunumformu.dt_gun);}
	  
	if ((document.sunumformu.dt_ay.value ==  "")) 
 		{	alert("Lütfen sunumun yapılmasını istediğiniz AYı seçiniz.");
		setColor(document.sunumformu.dt_ay);
 		document.sunumformu.dt_ay.focus();
 		return false; }else{unsetColor(document.sunumformu.dt_ay);}
	  
	if ((document.sunumformu.dt_yil.value ==  "")) 
 		{	alert("Lütfen sunumun yapılmasını istediğiniz YILı seçiniz.");
		setColor(document.sunumformu.dt_yil);
 		document.sunumformu.dt_yil.focus();
 		return false; }else{unsetColor(document.sunumformu.dt_yil);}
	  
	if ((document.sunumformu.saat.value ==  "")) 
 		{	alert("Lütfen sunumun yapılmasını istediğiniz SAAT'i seçiniz.");
		setColor(document.sunumformu.saat);
 		document.sunumformu.saat.focus();
 		return false; }else{unsetColor(document.sunumformu.saat);}

	return true;


}

function bilgiformCheck()
	{
	
	if ((document.bilgiformu.adsoyad.value ==  "")||(document.bilgiformu.adsoyad.value.length < 3)) 
 		{	alert("Lütfen adınızı ve soyadınızı belirtiniz.");
		setColor(document.bilgiformu.adsoyad);
 		document.bilgiformu.adsoyad.focus();
 		return false; }else{unsetColor(document.bilgiformu.adsoyad);}


	if (document.bilgiformu.email.value == '')
	  {
	    alert("Lütfen e-mail adresinizi giriniz.");
		setColor(document.bilgiformu.email);
		document.bilgiformu.email.focus();
	    return false;
	  }else{unsetColor(document.bilgiformu.email);}
	
	if (window.RegExp)
	  {
	    var r1 = new RegExp("^[a-zA-Z0-9\-\.\_]+@[a-zA-Z0-9\-\_]+\.+[a-zA-Z0-9]+$");
	    if (r1.test(document.bilgiformu.email.value) == false)
	    {
	      alert ("E-mail adresinizi eksik veya yanlış yazdınız.");
		  setColor(document.bilgiformu.email);
		  document.bilgiformu.email.focus();

	      return false;
	    }else{unsetColor(document.bilgiformu.email);}
	  }
	  
	  if ((document.bilgiformu.tel_kod_sabit.value ==  "")||(document.bilgiformu.tel_kod_sabit.value.length < 3)) 
 		{	alert("Lütfen ev veya iş telefonunuzun alan kodunu giriniz.");
		setColor(document.bilgiformu.tel_kod_sabit);
 		document.bilgiformu.tel_kod_sabit.focus();
 		return false; }else{unsetColor(document.bilgiformu.tel_kod_sabit);}
		
	if ((document.bilgiformu.tel_sabit.value ==  "")||(document.bilgiformu.tel_sabit.value.length < 7)) 
 		{	alert("Lütfen ev veya iş telefon numaranızı yazınız.");
		setColor(document.bilgiformu.tel_sabit);
 		document.bilgiformu.tel_sabit.focus();
 		return false; }else{unsetColor(document.bilgiformu.tel_sabit);}
		
	if ((document.bilgiformu.tel_kod_cep.value ==  "")||(document.bilgiformu.tel_kod_cep.value.length < 3)) 
 		{	alert("Lütfen cep telefonunuzun GSM kodunu giriniz.");
		setColor(document.bilgiformu.tel_kod_cep);
 		document.bilgiformu.tel_kod_cep.focus();
 		return false; }else{unsetColor(document.bilgiformu.tel_kod_cep);}
		
	if ((document.bilgiformu.tel_cep.value ==  "")||(document.bilgiformu.tel_cep.value.length < 7)) 
 		{	alert("Lütfen cep telefonu numaranızı yazınız.");
		setColor(document.bilgiformu.tel_cep);
 		document.bilgiformu.tel_cep.focus();
 		return false; }else{unsetColor(document.bilgiformu.tel_cep);}
		
	if ((document.bilgiformu.bolum.value ==  "")) 
 		{	alert("Lütfen ilgilendiğiniz bölümü seçiniz.");
		setColor(document.bilgiformu.bolum);
 		document.bilgiformu.bolum.focus();
 		return false; }else{unsetColor(document.bilgiformu.bolum);}
		
	if ((document.bilgiformu.lokasyon.value ==  "")||(document.bilgiformu.lokasyon.value.length < 3)) 
 		{	alert("Lütfen adres bilgilerinizi giriniz.");
		setColor(document.bilgiformu.lokasyon);
 		document.bilgiformu.lokasyon.focus();
 		return false; }else{unsetColor(document.bilgiformu.lokasyon);}
		


	return true;


}

function franchisingformCheck()
	{
	
	if ((document.franchising.kurum.value ==  "")||(document.franchising.kurum.value.length < 3)) 
 		{	alert("Kurum adını giriniz.");
		setColor(document.franchising.kurum);
 		document.franchising.kurum.focus();
 		return false; }else{unsetColor(document.franchising.kurum);}
	
	if ((document.franchising.faaliyet.value ==  ""))
 		{	alert("Faaliyet alanınızı seçiniz.");
		setColor(document.franchising.faaliyet);
 		document.franchising.faaliyet.focus();
 		return false; }else{unsetColor(document.franchising.faaliyet);}
		
	if ((document.franchising.il.value ==  "")||(document.franchising.il.value.length < 3)) 
 		{	alert("Lütfen kurumunuzun bulunduğu ili giriniz.");
		setColor(document.franchising.il);
 		document.franchising.il.focus();
 		return false; }else{unsetColor(document.franchising.il);}
		
	if ((document.franchising.ilce.value ==  "")||(document.franchising.ilce.value.length < 3)) 
 		{	alert("Lütfen kurumunuzun bulunduğu ilçeyi giriniz.");
		setColor(document.franchising.ilce);
 		document.franchising.ilce.focus();
 		return false; }else{unsetColor(document.franchising.ilce);}
		
	if ((document.franchising.tarih.value ==  "")||(document.franchising.tarih.value.length < 3)) 
 		{	alert("Lütfen kuruluş tarihini giriniz.");
		setColor(document.franchising.tarih);
 		document.franchising.tarih.focus();
 		return false; }else{unsetColor(document.franchising.tarih);}
		
	if ((document.franchising.o_sayi.value ==  "")) 
 		{	alert("Lütfen kurumunuzun öğrenci sayısını seçiniz.");
		setColor(document.franchising.o_sayi);
 		document.franchising.o_sayi.focus();
 		return false; }else{unsetColor(document.franchising.o_sayi);}
		
	if ((document.franchising.c_sayi.value ==  "")) 
 		{	alert("Lütfen kurumunuzun çalışan sayısını seçiniz.");
		setColor(document.franchising.c_sayi);
 		document.franchising.c_sayi.focus();
 		return false; }else{unsetColor(document.franchising.c_sayi);}
		
	if ((document.franchising.b_sayi.value ==  "")) 
 		{	alert("Lütfen eğitime ayrılan bilgisayar sayısını seçiniz.");
		setColor(document.franchising.b_sayi);
 		document.franchising.b_sayi.focus();
 		return false; }else{unsetColor(document.franchising.b_sayi);}
		
	if ((document.franchising.yonetici.value ==  "")||(document.franchising.il.value.length < 3)) 
 		{	alert("Lütfen kurumunuzun yöneticisini belirtiniz.");
		setColor(document.franchising.yonetici);
 		document.franchising.yonetici.focus();
 		return false; }else{unsetColor(document.franchising.yonetici);}
		
	if (document.franchising.email.value == '')
	  {
	    alert("Lütfen e-mail adresinizi giriniz.");
		setColor(document.franchising.email);
		document.franchising.email.focus();
	    return false;
	  }else{unsetColor(document.franchising.email);}
	
	if (window.RegExp)
	  {
	    var r1 = new RegExp("^[a-zA-Z0-9\-\.\_]+@[a-zA-Z0-9\-\_]+\.+[a-zA-Z0-9]+$");
	    if (r1.test(document.franchising.email.value) == false)
	    {
	      alert ("E-mail adresinizi eksik veya yanlış yazdınız.");
		  setColor(document.franchising.email);
		  document.franchising.email.focus();

	      return false;
	    }else{unsetColor(document.franchising.email);}
	  }
	  
	if ((document.franchising.tel_kod_sabit.value ==  "")||(document.franchising.tel_kod_sabit.value.length < 3)) 
 		{	alert("Lütfen ev veya iş telefonunuzun alan kodunu giriniz.");
		setColor(document.franchising.tel_kod_sabit);
 		document.franchising.tel_kod_sabit.focus();
 		return false; }else{unsetColor(document.franchising.tel_kod_sabit);}
		
	if ((document.franchising.tel_sabit.value ==  "")||(document.franchising.tel_sabit.value.length < 7)) 
 		{	alert("Lütfen ev veya iş telefon numaranızı yazınız.");
		setColor(document.franchising.tel_sabit);
 		document.franchising.tel_sabit.focus();
 		return false; }else{unsetColor(document.franchising.tel_sabit);}
		
	if ((document.franchising.hedef.value ==  "")||(document.franchising.hedef.value.length < 3)) 
 		{	alert("Lütfen kurumunuzun hedef kitlesini seçiniz.");
		setColor(document.franchising.hedef);
 		document.franchising.hedef.focus();
 		return false; }else{unsetColor(document.franchising.hedef);}

	return true;

}

function kullanicibilgiformCheck()
	{
	
	if ((document.kullanicibilgiformu.ad.value ==  "")||(document.kullanicibilgiformu.ad.value.length < 3)) 
 		{	alert("Lütfen adınızı belirtiniz.");
		setColor(document.kullanicibilgiformu.ad);
 		document.kullanicibilgiformu.ad.focus();
 		return false; }else{unsetColor(document.kullanicibilgiformu.ad);}

	if ((document.kullanicibilgiformu.soyad.value ==  "")||(document.kullanicibilgiformu.soyad.value.length < 2)) 
 		{	alert("Lütfen soyadınızı belirtiniz.");
		setColor(document.kullanicibilgiformu.soyad);
 		document.kullanicibilgiformu.soyad.focus();
 		return false; }else{unsetColor(document.kullanicibilgiformu.soyad);}

	if (document.kullanicibilgiformu.email.value == '')
	  {
	    alert("Lütfen e-mail adresinizi giriniz.");
		setColor(document.kullanicibilgiformu.email);
		document.kullanicibilgiformu.email.focus();
	    return false;
	  }else{unsetColor(document.kullanicibilgiformu.email);}
	
	if (window.RegExp)
	  {
	    var r1 = new RegExp("^[a-zA-Z0-9\-\.\_]+@[a-zA-Z0-9\-\_]+\.+[a-zA-Z0-9]+$");
	    if (r1.test(document.kullanicibilgiformu.email.value) == false)
	    {
	      alert ("E-mail adresinizi eksik veya yanlış yazdınız.");
		  setColor(document.kullanicibilgiformu.email);
		  document.kullanicibilgiformu.email.focus();

	      return false;
	    }else{unsetColor(document.kullanicibilgiformu.email);}
	  }
	  
	  if ((document.kullanicibilgiformu.tel_kod.value ==  "")||(document.kullanicibilgiformu.tel_kod.value.length < 3)) 
 		{	alert("Lütfen telefonunuzun alan kodunu giriniz.");
		setColor(document.kullanicibilgiformu.tel_kod);
 		document.kullanicibilgiformu.tel_kod.focus();
 		return false; }else{unsetColor(document.kullanicibilgiformu.tel_kod);}
		
	if ((document.kullanicibilgiformu.tel.value ==  "")||(document.kullanicibilgiformu.tel.value.length < 7)) 
 		{	alert("Lütfen telefon numaranızı yazınız.");
		setColor(document.kullanicibilgiformu.tel);
 		document.kullanicibilgiformu.tel.focus();
 		return false; }else{unsetColor(document.kullanicibilgiformu.tel);}
		
	if ((document.kullanicibilgiformu.kullaniciadi.value ==  "")||(document.kullanicibilgiformu.kullaniciadi.value.length < 3)) 
 		{	alert("Lütfen kullanıcı adınızı belirtiniz.");
		setColor(document.kullanicibilgiformu.kullaniciadi);
 		document.kullanicibilgiformu.kullaniciadi.focus();
 		return false; }else{unsetColor(document.kullanicibilgiformu.kullaniciadi);}
		
	if ((document.kullanicibilgiformu.bilgi.value ==  "")) 
 		{	alert("Lütfen kullanıcı bilginizi tanımlayınız.");
		setColor(document.kullanicibilgiformu.bilgi);
 		document.kullanicibilgiformu.bilgi.focus();
 		return false; }else{unsetColor(document.kullanicibilgiformu.bilgi);}
		
	if ((document.kullanicibilgiformu.kategori.value ==  "")) 
 		{	alert("Lütfen mesajınızın konusunu belirtiniz.");
		setColor(document.kullanicibilgiformu.kategori);
 		document.kullanicibilgiformu.kategori.focus();
 		return false; }else{unsetColor(document.kullanicibilgiformu.kategori);}
		
	if ((document.kullanicibilgiformu.mesaj.value ==  "")||(document.kullanicibilgiformu.mesaj.value.length < 3)) 
 		{	alert("Lütfen mesajınızı yazınız.");
		setColor(document.kullanicibilgiformu.mesaj);
 		document.kullanicibilgiformu.mesaj.focus();
 		return false; }else{unsetColor(document.kullanicibilgiformu.mesaj);}
		


	return true;

}

function kurumsalbilgiformCheck()
	{
	
	if ((document.kurumsalbilgiformu.sirket.value ==  "")) 
 		{	alert("Lütfen şirketinizin adını belirtiniz.");
		setColor(document.kurumsalbilgiformu.sirket);
 		document.kurumsalbilgiformu.sirket.focus();
 		return false; }else{unsetColor(document.kurumsalbilgiformu.sirket);}
	
	if ((document.kurumsalbilgiformu.sektor.value ==  "")) 
 		{	alert("Lütfen şirketinizin faaliyet gösterdiği sektörü belirtiniz.");
		setColor(document.kurumsalbilgiformu.sektor);
 		document.kurumsalbilgiformu.sektor.focus();
 		return false; }else{unsetColor(document.kurumsalbilgiformu.sektor);}
	
	if ((document.kurumsalbilgiformu.model.value ==  ""))
 		{	alert("Lütfen istediğiniz eğitim modelini seçiniz.");
		setColor(document.kurumsalbilgiformu.model);
 		document.kurumsalbilgiformu.model.focus();
 		return false; }else{unsetColor(document.kurumsalbilgiformu.model);}
	
	if ((document.kurumsalbilgiformu.adsoyad.value ==  "")||(document.kurumsalbilgiformu.adsoyad.value.length < 3)) 
 		{	alert("Lütfen adınızı ve soyadınızı belirtiniz.");
		setColor(document.kurumsalbilgiformu.adsoyad);
 		document.kurumsalbilgiformu.adsoyad.focus();
 		return false; }else{unsetColor(document.kurumsalbilgiformu.adsoyad);}

	if (document.kurumsalbilgiformu.email.value == '')
	  {
	    alert("Lütfen e-mail adresinizi giriniz.");
		setColor(document.kurumsalbilgiformu.email);
		document.kurumsalbilgiformu.email.focus();
	    return false;
	  }else{unsetColor(document.kurumsalbilgiformu.email);}
	
	if (window.RegExp)
	  {
	    var r1 = new RegExp("^[a-zA-Z0-9\-\.\_]+@[a-zA-Z0-9\-\_]+\.+[a-zA-Z0-9]+$");
	    if (r1.test(document.kurumsalbilgiformu.email.value) == false)
	    {
	      alert ("E-mail adresinizi eksik veya yanlış yazdınız.");
		  setColor(document.kurumsalbilgiformu.email);
		  document.kurumsalbilgiformu.email.focus();

	      return false;
	    }else{unsetColor(document.kurumsalbilgiformu.email);}
	  }
	  
	  if ((document.kurumsalbilgiformu.tel_kod_sabit.value ==  "")||(document.kurumsalbilgiformu.tel_kod_sabit.value.length < 3)) 
 		{	alert("Lütfen ev veya iş telefonunuzun alan kodunu giriniz.");
		setColor(document.kurumsalbilgiformu.tel_kod_sabit);
 		document.kurumsalbilgiformu.tel_kod_sabit.focus();
 		return false; }else{unsetColor(document.kurumsalbilgiformu.tel_kod_sabit);}
		
	if ((document.kurumsalbilgiformu.tel_sabit.value ==  "")||(document.kurumsalbilgiformu.tel_sabit.value.length < 7)) 
 		{	alert("Lütfen ev veya iş telefon numaranızı yazınız.");
		setColor(document.kurumsalbilgiformu.tel_sabit);
 		document.kurumsalbilgiformu.tel_sabit.focus();
 		return false; }else{unsetColor(document.kurumsalbilgiformu.tel_sabit);}
		
	if ((document.kurumsalbilgiformu.tel_kod_cep.value ==  "")||(document.kurumsalbilgiformu.tel_kod_cep.value.length < 3)) 
 		{	alert("Lütfen cep telefonunuzun GSM kodunu giriniz.");
		setColor(document.kurumsalbilgiformu.tel_kod_cep);
 		document.kurumsalbilgiformu.tel_kod_cep.focus();
 		return false; }else{unsetColor(document.kurumsalbilgiformu.tel_kod_cep);}
		
	if ((document.kurumsalbilgiformu.tel_cep.value ==  "")||(document.kurumsalbilgiformu.tel_cep.value.length < 7)) 
 		{	alert("Lütfen cep telefonu numaranızı yazınız.");
		setColor(document.kurumsalbilgiformu.tel_cep);
 		document.kurumsalbilgiformu.tel_cep.focus();
 		return false; }else{unsetColor(document.kurumsalbilgiformu.tel_cep);}
		
	if ((document.kurumsalbilgiformu.adres.value ==  "")||(document.kurumsalbilgiformu.adres.value.length < 3)) 
 		{	alert("Lütfen adres bilgilerinizi giriniz.");
		setColor(document.kurumsalbilgiformu.adres);
 		document.kurumsalbilgiformu.adres.focus();
 		return false; }else{unsetColor(document.kurumsalbilgiformu.adres);}
		


	return true;


}

function denemeformCheck()
	{
	
	if ((document.deneme.adsoyad.value ==  "")||(document.deneme.adsoyad.value.length < 3)) 
 		{	alert("Lütfen adınızı ve soyadınızı belirtiniz.");
		setColor(document.deneme.adsoyad);
 		document.deneme.adsoyad.focus();
 		return false; }else{unsetColor(document.deneme.adsoyad);}

	if (document.deneme.email.value == '')
	  {
	    alert("Lütfen e-mail adresinizi giriniz.");
		setColor(document.deneme.email);
		document.deneme.email.focus();
	    return false;
	  }else{unsetColor(document.deneme.email);}
	
	if (window.RegExp)
	  {
	    var r1 = new RegExp("^[a-zA-Z0-9\-\.\_]+@[a-zA-Z0-9\-\_]+\.+[a-zA-Z0-9]+$");
	    if (r1.test(document.deneme.email.value) == false)
	    {
	      alert ("E-mail adresinizi eksik veya yanlış yazdınız.");
		  setColor(document.deneme.email);
		  document.deneme.email.focus();

	      return false;
	    }else{unsetColor(document.deneme.email);}
	  }
	  
	  if ((document.deneme.tel_kod_sabit.value ==  "")||(document.deneme.tel_kod_sabit.value.length < 3)) 
 		{	alert("Lütfen ev veya iş telefonunuzun alan kodunu giriniz.");
		setColor(document.deneme.tel_kod_sabit);
 		document.deneme.tel_kod_sabit.focus();
 		return false; }else{unsetColor(document.deneme.tel_kod_sabit);}
		
	if ((document.deneme.tel_sabit.value ==  "")||(document.deneme.tel_sabit.value.length < 7)) 
 		{	alert("Lütfen ev veya iş telefon numaranızı yazınız.");
		setColor(document.deneme.tel_sabit);
 		document.deneme.tel_sabit.focus();
 		return false; }else{unsetColor(document.deneme.tel_sabit);}
		
	if ((document.deneme.tel_kod_cep.value ==  "")||(document.deneme.tel_kod_cep.value.length < 3)) 
 		{	alert("Lütfen cep telefonunuzun GSM kodunu giriniz.");
		setColor(document.deneme.tel_kod_cep);
 		document.deneme.tel_kod_cep.focus();
 		return false; }else{unsetColor(document.deneme.tel_kod_cep);}
		
	if ((document.deneme.tel_cep.value ==  "")||(document.deneme.tel_cep.value.length < 7)) 
 		{	alert("Lütfen cep telefonu numaranızı yazınız.");
		setColor(document.deneme.tel_cep);
 		document.deneme.tel_cep.focus();
 		return false; }else{unsetColor(document.deneme.tel_cep);}
		
	if ((document.deneme.nerden.value ==  "")) 
 		{	alert("Lütfen adres bilgilerinizi giriniz.");
		setColor(document.deneme.nerden);
 		document.deneme.nerden.focus();
 		return false; }else{unsetColor(document.deneme.nerden);}
		


	return true;


}

function seminerformCheck()
	{
	
	if ((document.seminer.adsoyad.value ==  "")||(document.seminer.adsoyad.value.length < 3)) 
 		{	alert("Ad ve soyad giriniz.");
		setColor(document.seminer.adsoyad);
 		document.seminer.adsoyad.focus();
 		return false; }else{unsetColor(document.seminer.adsoyad);}
		
	/*if ((document.seminer.dt_gun.value ==  "")) 
 		{	alert("Lütfen doğduğunuz günü seçiniz.");
		setColor(document.seminer.dt_gun);
 		document.seminer.dt_gun.focus();
 		return false; }else{unsetColor(document.seminer.dt_gun);}
	  
	if ((document.seminer.dt_ay.value ==  "")) 
 		{	alert("Lütfen doğduğunuz ayı seçiniz.");
		setColor(document.seminer.dt_ay);
 		document.seminer.dt_ay.focus();
 		return false; }else{unsetColor(document.seminer.dt_ay);}
	  
	if ((document.seminer.dt_yil.value ==  "")) 
 		{	alert("Lütfen doğduğunuz yılı seçiniz.");
		setColor(document.seminer.dt_yil);
 		document.seminer.dt_yil.focus();
 		return false; }else{unsetColor(document.seminer.dt_yil);}*/

	if (document.seminer.email.value == '')
	  {
	    alert("Lütfen e-mail adresinizi giriniz.");
		setColor(document.seminer.email);
		document.seminer.email.focus();
	    return false;
	  }else{unsetColor(document.seminer.email);}
	
	if (window.RegExp)
	  {
	    var r1 = new RegExp("^[a-zA-Z0-9\-\.\_]+@[a-zA-Z0-9\-\_]+\.+[a-zA-Z0-9]+$");
	    if (r1.test(document.seminer.email.value) == false)
	    {
	      alert ("E-mail adresinizi eksik veya yanlış yazdınız.");
		  setColor(document.seminer.email);
		  document.seminer.email.focus();

	      return false;
	    }else{unsetColor(document.seminer.email);}
	  }
	  
	  if ((document.seminer.tel_kod_sabit.value ==  "")||(document.seminer.tel_kod_sabit.value.length < 3)) 
 		{	alert("Lütfen telefonunuzun alan kodunu giriniz.");
		setColor(document.seminer.tel_kod_sabit);
 		document.seminer.tel_kod_sabit.focus();
 		return false; }else{unsetColor(document.seminer.tel_kod_sabit);}
		
	if ((document.seminer.tel_sabit.value ==  "")||(document.seminer.tel_sabit.value.length < 7)) 
 		{	alert("Lütfen telefon numaranızı yazınız.");
		setColor(document.seminer.tel_sabit);
 		document.seminer.tel_sabit.focus();
 		return false; }else{unsetColor(document.seminer.tel_sabit);}
		
	/*if ((document.seminer.tel_kod_cep.value ==  "")||(document.seminer.tel_kod_cep.value.length < 3)) 
 		{	alert("Lütfen cep telefonunuzun GSM kodunu giriniz.");
		setColor(document.seminer.tel_kod_cep);
 		document.seminer.tel_kod_cep.focus();
 		return false; }else{unsetColor(document.seminer.tel_kod_cep);}
		
	if ((document.seminer.tel_cep.value ==  "")||(document.seminer.tel_cep.value.length < 7)) 
 		{	alert("Lütfen cep telefonu numaranızı yazınız.");
		setColor(document.seminer.tel_cep);
 		document.seminer.tel_cep.focus();
 		return false; }else{unsetColor(document.seminer.tel_cep);}*/
		
	if ((document.seminer.bolum.value ==  "")) 
 		{	alert("Lütfen ilgilendiğiniz bölümü seçiniz.");
		setColor(document.seminer.bolum);
 		document.seminer.bolum.focus();
 		return false; }else{unsetColor(document.seminer.bolum);}
		
	if ((document.seminer.nerden.value ==  "")) 
 		{	alert("Lütfen bizi nereden duyduğunuzu belirtiniz.");
		setColor(document.seminer.nerden);
 		document.seminer.nerden.focus();
 		return false; }else{unsetColor(document.seminer.nerden);}
		
	if ((document.seminer.il.value ==  "")||(document.seminer.il.value.length < 3)) 
 		{	alert("Lütfen İl ve ilçenizi yazınız.");
		setColor(document.seminer.il);
 		document.seminer.il.focus();
 		return false; }else{unsetColor(document.seminer.il);}
		
	if ((document.seminer.yer.value ==  "")) 
 		{	alert("Lütfen bir seminer yeri seçiniz.");
		setColor(document.seminer.yer);
 		document.seminer.yer.focus();
 		return false; }else{unsetColor(document.seminer.yer);}
		
	if ((document.seminer.gun.value ==  "")) 
 		{	alert("Lütfen bir seminer günü seçiniz.");
		setColor(document.seminer.gun);
 		document.seminer.gun.focus();
 		return false; }else{unsetColor(document.seminer.gun);}
		
	if ((document.seminer.saat.value ==  "")) 
 		{	alert("Lütfen bir seminer saati seçiniz.");
		setColor(document.seminer.saat);
 		document.seminer.saat.focus();
 		return false; }else{unsetColor(document.seminer.saat);}
	  


	return true;


}
  -->