// MY SCRIPTS
// Use this area to add new scripts that you need for your site

 
//LOWER BROWSER BORDER FIX
//Remove the blue border around linked images
	function searchsubmitbuttonwithborderfix() {
		document.write('<input type="image" src="/images/searchgo.gif" alt="Go" id="goButton" name="goButton" align="middle" onmouseover="this.src=\'/images/searchgo-over.gif\';" onmouseout="this.src=\'/images/searchgo.gif\';"');
		if (ns4) {
			document.write(' border = "0"');
		}
		
		document.write('>');
		
	}
// -->



function show(object) {
    if (document.getElementById && document.getElementById(object) != null){
         node = document.getElementById(object).style.display='block';
    }
	else if (document.layers && document.layers[object] != null){
        document.layers[object].display = 'block';
    }
	else if (document.all){
        document.all[object].style.display = 'block';
    }
}

function hide(object) {
    if (document.getElementById && document.getElementById(object) != null){
        node = document.getElementById(object).style.display='none';
    }
	else if (document.layers && document.layers[object] != null){
        document.layers[object].display = 'none';
    }
	else if (document.all){
        document.all[object].style.display = 'none';
    }
}


	
function hottopics(){
    show("hottopics");
    hide("regulation");
    hide("conservation");
    hide("education");
    hide("recreation");
	}

function regulation(){
    hide("hottopics");
    show("regulation");
    hide("conservation");
    hide("education");
    hide("recreation");
	}

function conservation(){
    hide("hottopics");
    hide("regulation");
    show("conservation");
    hide("education");
    hide("recreation");
	}

function education(){
    hide("hottopics");
    hide("regulation");
    hide("conservation");
    show("education");
    hide("recreation");
	}
	
function recreation(){
    hide("hottopics");
    hide("regulation");
    hide("conservation");
    hide("education");
    show("recreation");
	}

	

function statusmessage(text){
   window.status = text;
}



function clearstatus(){
  window.status = "";
}



 