function init()
{

if(document.all) {

document.getElementById('razina2').style.marginLeft = '-1055px';


}


readfont();
}


function pokazi(id)
{

document.getElementById(id).style.display = "block";

}

function sakrij(id)
{
document.getElementById(id).style.display = "none";
}


function sirina(id)
{
var c;
var podlinkovi=document.getElementById(id).childNodes;
     for(var c=0; c < podlinkovi.length; c++) {
      if(podlinkovi[c].style) {
       podlinkovi[c].style.width = '123px';
      }
     }
 }

 function font(size) {
     document.getElementById("Sadrzaj").style.fontSize = size;
     document.cookie = 'fontsize=' + size + ';';
 }

 function readfont() {
     if (document.cookie != null) {
         var font = document.cookie.split(';');
         var size = font[0].split('=')[1];
         document.getElementById("Sadrzaj").style.fontSize = size;
     }

 }

