// JavaScript Document
function chiudo() {
  try { var _cl = document.getElementById("load"); if (_cl) { _cl.style.display = "none"; } } catch(e) { return false; }
}
function functionLoad() { chiudo(); }

function show_content(_id) {
  var jH = document.getElementById("Content_" + _id);
  if (jH) {
    document.getElementById('Freccia_' + _id).src = '/images/Intestazioni/Arrow%20' + ((jH.style.display == "none")?'Up':'Down') + ".gif";
  	if (jH.style.display == "none") { jH.style.display = ""; } else { jH.style.display = "none"; }
  }
  return void(0);
}
