<!--
 function prld(imgsrc) {
 var img=new Image()
 img.src=imgsrc;
 }
 //-------------
 function vis_on(visID) {
	 document.getElementById(visID).style.visibility = 'visible';
 }
 function vis_off(visID) {
	 document.getElementById(visID).style.visibility = 'hidden';
 }
 //-------------
 function goFB(FB) {
	var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //nije IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ ali stCm
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
 window.location="http://www.krsmanovic.org/files/main_"+lng+".php?s="+FB+"&bH="+myHeight+"&bW="+myWidth;
}
//-->