/**
 *  this function is used to show and hide some elements
 * @params: idShow the id of the element to show
 *          idHide (array) the ids of the elements to hide
 * @return always returns true
 */

function show_hide(idShow,idHide){
   document.getElementById(idShow).style.display = "block";

   for(var i = 0; i < idHide.length; i++){
        document.getElementById(idHide[i]).style.display = "none";
   }

  
}

