//================================ Yazı Buyult Kucult ==================================================
var min=12;
var max=18;
function increaseFontSize(DivID) {
   var div = document.getElementById(DivID);
      if(div.style.fontSize) {
         var s = parseInt(div.style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=max) {
         s += 1;
      }
      div.style.fontSize = s+"px"
   
}
function decreaseFontSize(DivID) {
   var div = document.getElementById(DivID);
      if(div.style.fontSize) {
         var s = parseInt(div.style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=min) {
         s -= 1;
      }
      div.style.fontSize = s+"px"
}
function resetFontSize(DivID) {
	var div = document.getElementById(DivID);
 	div.style.fontSize = 13+"px"
	}

//================================Zdefteri GÖSTER==================================================

function showDiv(divID){
	if(document.getElementById(divID).style.display=="none")
        {
                document.getElementById(divID).style.display="block";
        }
        else
        {
                document.getElementById(divID).style.display="none";
        }
	}
//================================YORUM GÖSTER BITTI==================================================
//================================Toogle DIV==================================================
function toogle_show(id){
 	$("#"+id).slideToggle("slow");
}
//================================Toogle DIV ENDE=============================================

	
	
