<!--
    function toggle_visibility(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
    }
	

	function formHandler(form){
		var URL = document.form.site.options[document.form.site.selectedIndex].value;
		if (URL != "nothing"){
			window.location.href = URL;
		}
	}

//-->