﻿// JScript File

    //Script за смяна на книгите
    function expandIt_book(el, i) {
	    for(j=1;j<=i;j++){
		    document.getElementById('book'+j).style.display="none";
		    document.getElementById('book'+j+'_link').className="";
	    }
	    document.getElementById(el).style.display="block";
	    document.getElementById(el+'_link').className="current_book";

    }
    
    //скрипт за показване на менюто с продукти в страница Main
    function expandMenu(num) {
		document.getElementById('tab'+num).style.display="none";
	    document.getElementById('tab2').style.display="block";
    }
       
    //скрипт за увеличаване/намаляване на шрифта на средната колона
    var min=8;
    var max=14;
    function increaseFontSize() {
       var p = document.getElementById('ctl00#sizable');
          if(p.style.fontSize) 
          {
             var s = parseInt(p.style.fontSize.replace("px",""));
          } else {
             var s = 10;
          }
          if(s!=max) 
          {
             s += 1;
          }
          p.style.fontSize = s+"px"
    }
    
    function decreaseFontSize() {
       var p = document.getElementById('ctl00#sizable');
          if(p.style.fontSize) {
             var s = parseInt(p.style.fontSize.replace("px",""));
          } else {
             var s = 10;
          }
          if(s!=min) {
             s -= 1;
          }
          p.style.fontSize = s+"px"
    }
    
    //скрипт аз смяна на табовете на продуктите
    function expandIt_tab(el, i) {
	    for(j=1;j<=4;j++){
		    document.getElementById('tab'+j).style.display="none";
		    document.getElementById('tab'+j+'_link').className="";
	    }
	    document.getElementById(el).style.display="block";
	    document.getElementById(el+'_link').className="current";
    }   
    
    function expand_faq(id)
    {
        var dv = document.getElementById(id + 'content');
        dv.style.display = (dv.style.display == "none") ? "block" : "none";
    }

