function dernek_mailCtrl(mail){
	var filter=/^.+@.+\..{2,3}$/
	var hataVar=0
		
	if (filter.test(mail)) {
		if(mail.indexOf('ı')>0){hataVar=1;}
		else if(mail.indexOf('İ')>0){hataVar=1;}
		else if(mail.indexOf('ş')>0){hataVar=1;}
		else if(mail.indexOf('Ş')>0){hataVar=1;}
		else if(mail.indexOf('ğ')>0){hataVar=1;}
		else if(mail.indexOf('Ğ')>0){hataVar=1;}
		else if(mail.indexOf('ü')>0){hataVar=1;}
		else if(mail.indexOf('Ü')>0){hataVar=1;}
		else if(mail.indexOf('ö')>0){hataVar=1;}
		else if(mail.indexOf('Ö')>0){hataVar=1;}
		else if(mail.indexOf('ç')>0){hataVar=1;}
		else if(mail.indexOf('Ç')>0){hataVar=1;}
		if(hataVar==0){
			return true;
		}else{
			return false;
		}
	}else{
		return false;
	}
}

function videoEkranKapat(obj){
	var objNesne = document.getElementById(obj);
	if(objNesne){
		if(objNesne.style.display == "none"){
			objNesne.style.display = "";
		}else{
			objNesne.style.display = "none"
		}
	}
}

function flashYaz(adres,w,h,bg,tran,isim){
	document.writeln('<object id="'+isim+'" width="'+w+'" height="'+h+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0">');
	document.writeln('<param name="movie" value="'+adres+'"><param name="wmode" value="'+tran+'"><param name="bgcolor" value="'+bg+'">');
	document.writeln('<embed name="'+isim+'" src="'+adres+'" width="'+w+'" height="'+h+'" wmode="' + tran + '" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash"></embed>');
	document.writeln('</object>');
}

function tabAcBakim(nesne,ids,toplam){
	var i;
	for(i=0;i<toplam;i++){
		document.getElementById(nesne + i).style.display="none";
	}
	if(ids>-1){document.getElementById(nesne + ids).style.display="";}
}

function kisaOtoFormGonder(objFrm){
	if(objFrm){
		if(objFrm.txtRefNo.value==""){
			alert("Lütfen aramak istediğiniz ilanın referans numarasını yazınız...");
			document.getElementById("txtRefNo").focus();
			return false;
		}
	}
}

var forum_dosya_count = 0;
function forum_dosya_ekle(objYer,strName){
	var obj = document.getElementById(objYer);
	if(obj){
		var objBR = document.createElement('br');
		obj.appendChild(objBR);
		
		var input = document.createElement('input');
		input.type = 'file';
		input.name = strName + '[' + forum_dosya_count + ']';
		input.id = strName + '[' + forum_dosya_count + ']';
		input.className = 'textbox';
		input.size = '35';
		obj.appendChild(input);
		
		//obj.innerHTML += '<div><input type="file" name="' + name + (forum_dosya_count + 1) + '" id="' + name + (forum_dosya_count + 1) + '" class="textbox" size="35" /></div>'
		forum_dosya_count += 1;
	}
}