function OpenNewWindow(url,w,h,isim,ozellik){
    var cw = (window.screen.width - w) / 2;
    var ch = (window.screen.height - h) / 2;           
    yenipencere = window.open(url,isim,""+ozellik+"location=0,status=0,menubar=0,toolbar=0,directories=0,titlebar=0,width="+w+",height="+h+",top="+ch+",left="+cw+"");
	yenipencere.focus();
}

function resizeText(multiplier) {
  if (document.body.style.fontSize == "") {
    document.body.style.fontSize = "1.0em";
  }
  document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiplier * 0.2) + "em";
}

function sadeceSayi(evt){// inputlara sadece sayı girilmesi için onkeypress="return sadeceSayi(event);"
	var charCode = (evt.which) ? evt.which : event.keyCode
	if (charCode > 31 && (charCode < 48 || charCode > 57))
	return false;
	return true;
}


function goster(what){ // manşet
	for(i=0;i<11;i++){
		document.getElementById('c['+i+']').style.display = 'none';	
		document.getElementById('f['+i+']').style.display = 'none';	
	}
	document.getElementById('c['+what+']').style.display = 'block';
	document.getElementById('f['+what+']').style.display = 'block';
}

function kontrol_arama(form_arama)
{

	if (form_arama.ara.value.length < 4){
		alert("Axtarış ən qısa 4 simvol təşkil etməlidir.")
	return false
	}

return true
}
