/*Extra functions for the template by Hanson Jeng
11/16/2009
*/
function SiteBannerGoThere(){
  //this is the default website for the site banner
   location.href='http://www.civiced.org/';
}

function openClose(theID) {
 if (document.getElementById(theID) == null){
   return null;
 }
 if (document.getElementById(theID).style.display == "block") { 
   document.getElementById(theID).style.display = "none" 
	 if (document.getElementById(theID+"_button"))
	   document.getElementById(theID+"_button").innerHTML = "<B>+</b>";
	 
 }else { 
   document.getElementById(theID).style.display = "block" 
	 if (document.getElementById(theID+"_button"))
	   document.getElementById(theID+"_button").innerHTML = "<B>-</b>";
 } }

/*
code for redefine where site should go base on the banner
  window['SiteBannerGoThere']= function(){
   location.href='http://www.civiced.org/';
	 } 
*/




