//////////////////////////////////////
//"Please Wait"  Show Hide Toggle   //
//Used in following pages to display//
//rotating disc.                    //
//-selectcommunity.php              //
//-selectgreenway.php               //
//-selectbarrier.php                //
//-selectplan.php                   //
//////////////////////////////////////
//Create an array
var allPageTags = new Array();

function showHideToggle(theClass,onORoff)
{

 //Populate the array with all the page tags
 var allPageTags=document.getElementsByTagName("*");
 //Cycle through the tags using a for loop
 for (i=0; i<allPageTags.length; i++)
 {
  //Pick out the tags with our class name
  if (allPageTags[i].className==theClass)
  {
   //Manipulate object whatever way you want
   if (allPageTags[i].style.visibility == "hidden")
   {allPageTags[i].style.visibility = "visible";}
   else
   {allPageTags[i].style.visibility = "hidden";}
  }
 }
}


//////////////////////
//END "Please Wait" //
//////////////////////