<!--
function show_pic(picID){
  var myObj = document.getElementById(picID);
   // myObj.style.display = "block";
    myObj.style.visibility = "visible";
}

function hide_pic(picID){
  var myObj = document.getElementById(picID);
    //myObj.style.display = "none";
    myObj.style.visibility = "hidden";
}

function switch_pic(obj, val){
  obj.src = val;
}
function switch_pic2(idx){
  for (var i=1 ; i<=6 ; i++)
    document.getElementById('produeb'+i).src = document.getElementById('produeb_out__'+i).value;
    
  document.getElementById('produeb'+idx).src = document.getElementById('produeb_over_'+idx).value;
  
  var subl = document.getElementById('produeb_subl_'+idx).value;
  document.getElementById('produeb_subl').innerHTML = subl;
  var text = document.getElementById('produeb_text_'+idx).value;
  document.getElementById('produeb_text').innerHTML = '<p>'+text+'</p>';
  var link = document.getElementById('produeb_link_'+idx).value;
  document.getElementById('produeb_link').innerHTML = '<a href="'+link+'">read more</a>';
}
//-->