function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function rotadorItems(show,hide1,hide2,hide3,hide4,hide5) {
toShow = document.getElementById(show);
toHide1 = document.getElementById(hide1);
toHide2 = document.getElementById(hide2);
toHide3 = document.getElementById(hide3);
toHide4 = document.getElementById(hide4);
toHide5 = document.getElementById(hide4);


toShow.style.display = "block";
toHide1.style.display = "none";
toHide2.style.display = "none";
toHide3.style.display = "none";
toHide4.style.display = "none";
toHide5.style.display = "none";
}