<!--
ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));
function msover( idcopy ){
        if (ie4){
                event.srcElement.style.color="BA2752";
                event.srcElement.style.cursor = "hand";
        }
}
function msout3(){
        if (ie4){
                event.srcElement.style.color="black";
                event.srcElement.style.cursor = "auto";
        }
}
function toggle( targetId ){
  if (ie4){
	  		   target = document.all( targetId );
                        if (target.style.display == "none"){
								document.all.balikesir.style.display = "none";
								document.all.ilce.style.display = "none";
								document.all.hava.style.display = "none";
								document.all.telefon.style.display = "none";
								document.all.firmalar.style.display = "none";
                                target.style.display = "";
                        } else {
                                target.style.display = "none";
                        }
        }
}
//-->