function gentest () {
  alert('gentesting works');
}

/********************************************************************************************/
/* This function is used to unhide and hide DIVs                                            */
/*  Usage: Setup 2 DIVs, outer and inner i your HTML code                                   */
/* 	  Outer: Must contain a <a href> link with onclick like:                                */
/*      <div>Page <a href="#" onclick="showhidediv('<id>'); return(false);"><id></a>:</div> */
/*    Inner: Must contain the ID called in the onclick and the style="display:none;" linke: */
/*	    <div id="<id>" style="display: none;">                                              */
/********************************************************************************************/
function showhidediv(id) {
  if (document.getElementById) {
    obj = document.getElementById(id);
    if (obj.style.display == "none"){
     obj.style.display = "";
    } else {
     obj.style.display = "none";
    }
  }
}
