function Show(main, profile){
  document.getElementById('main').style.display=main; 
  document.getElementById('profile').style.display=profile;
}

function create_menu(){
  var menu = { "1":"http://www.benedetto.sk/sk/1/Devocionalie", "2":"http://knihy.benedetto.sk/sk/1/Knihy", "3":"http://www.benedetto.sk/sk/2/Autodoprava" };        
  var result = '';
  for(var item in menu){                              
    result += '<li><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="189" height="194" id="menu_item" align="middle">' +
              '<param name="allowScriptAccess" value="sameDomain" />' +
              '<param name="movie" value="flash/button'+item+'.swf?href=' + menu[item]+ '" />' + 
              '<param name="quality" value="high" />' +
              '<param name="bgcolor" value="#000000" />' +
              '<param name="wmode" value="transparent" />' +                    
              '<embed src="flash/button'+item+'.swf?href=' + menu[item]+ '" quality="high" bgcolor="#000000" width="189" height="194" name="menu_item" wmode="transparent" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />' +
              '</object></li>';                        
                        
  }
  if (obj = document.getElementById('menu')) obj.innerHTML = result;
}

function clickIE() {
  if (document.all) return false;
}

function clickNS(e) {
  if (document.layers||(document.getElementById&&!document.all)) {
    if (e.which==2||e.which==3) return false;
  }
}

if (document.layers) {
  document.captureEvents(Event.MOUSEDOWN);
  document.onmousedown=clickNS;
}
else{
  document.onmouseup=clickNS;
  document.oncontextmenu=clickIE;
}
document.oncontextmenu=new Function("return false");
