function openpic(pic){
    window.open("http://www.fslh.lu/gallery/display/" + pic, "popup", "width=400, height=300");
    return;
}

function openpub(element){
  var obj = document.getElementById(element);
  obj.style.visibility = "visible";
}

function onclickpub(element,lang){
  var obj = document.getElementById(element);
  var text = '<div class="pub">';
  if (lang == 'fr'){
    text += '<h2 class="pub">&nbsp;&nbsp;&nbsp;OPERATION UN BRACELET POUR UN HANDICAPE</h2>';
    text += '&nbsp;&nbsp;Pour toute commande de bracelets,veuillez contacter le bureau:<br/><br/>';
  }else if (lang == 'de'){
    text = '<h2 class="pub">&nbsp;&nbsp;&nbsp;OPERATION EIN ARMBAND F&Uuml;R EINEN BEHINDERTEN</h2>';
    text += '&nbsp;&nbsp;Um ein Armband zu bestellen, kontaktieren Sie das B&uuml;ro:<br/><br/>';
  }else {
    text = '<h2 class="pub">&nbsp;&nbsp;&nbsp;OPERATION ONE BRACELET FOR ONE HANDYCAPED PERSON</h2>';
    text += '&nbsp;&nbsp;To get e bracelet, please contact the office:<br/><br/>';  
  }
  text += '&nbsp;&nbsp;Kol Trading<br/>';
  text += '&nbsp;&nbsp;31,Val Sainte-Croix<br/>';
  text += '&nbsp;&nbsp;L-1371 Luxembourg<br/>';
  text += '&nbsp;&nbsp;Tel:  26 30 25 21<br/>';
  text += '</div>';
  obj.innerHTML = text;
}

function closepub(element){
  var obj = document.getElementById(element);
  obj.style.visibility = "hidden";  
}