<!--
function uyeform_onsubmit() {
   if (document.uyeform.rumuz.value == ""){
        alert ("E, hani rumuz?");
        document.uyeform.rumuz.focus();
        return false;  
      }
   if (document.uyeform.sifre.value == "")   {
        alert ("E, hani şifre?");
        document.uyeform.sifre.focus();
        return false;
      }
   if (document.uyeform.sifre.value.length<3 || document.uyeform.sifre.value.length>24){
        alert ("Şifre 3-24 karakter uzunluğunda olmalı !");
        document.uyeform.sifre.focus();
        return false;
      }
}
function hizliara_onsubmit() {
   if (document.hizliara.hizliara.value == ""){
        alert ("E, hani kelime? Arayacağınız kelimeyi yazın.");
        document.hizliara.hizliara.focus();
        return false;  
      }
   if (document.hizliara.hizliara.value.length<2 || document.hizliara.hizliara.value.length>30){
        alert ("Aranan kelime 2-30 karakter uzunluğunda olmalı !");
        document.hizliara.hizliara.focus();
        return false;  
      }
}
var isaret=false
function oylama_form_onsubmit(){
	for (var i=0;i<document.oylama_form.length;i++){	
		if (document.oylama_form.oy[i].checked){
			isaret=true
		}
	}
	if (!isaret){
		alert("E, seçim yapmadınız!");
		document.oylama_form.oy[0].focus();
		return false;
	}
}
function popup(url, name, gen, yuk){
	eval(window.open(url,name,"toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width=" + gen + ",height=" + yuk + ",screenX=5,screenY=5,top=5,left=5"));
}
function popupscroll(url, gen, yuk){
eval(window.open(url,"itiraf","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,width=" + gen + ",height=" + yuk + ",screenX=5,screenY=5,top=5,left=5"));
}
function popupscroll2(url, gen, yuk){
eval(window.open(url,"fikir","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,width=" + gen + ",height=" + yuk + ",screenX=5,screenY=5,top=5,left=5"));
}
function popupeditor(url, name, gen, yuk){
	eval(window.open(url,name,"toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,width=" + gen + ",height=" + yuk + ",screenX=5,screenY=5,top=5,left=5"));
}
// anket
function frmoy1_OnSubmit(){
	popupscroll("popup/anket_sonuc.asp?Sonuc=1&Bolum=Genel" , 367,330 ); 
	return false;
}
function frmoy_OnSubmit(id){
	var secili;
	for (i = 0; i <= document.frmoy.elements.length-1; i++){
		
		if (document.frmoy.oy[i].checked)
		{
			secili = document.frmoy.oy[i].value;
			break;
		}
	}
	if (secili>0)
		popupscroll("popup/anket_sonuc.asp?oy=" + secili + "&bolum=genel&anketid=" + id , 367, 330 );
	else
		alert("E, seçim yapmadınız!");
	
		return false;
}
//anket end
//-->
