// code for setting the browser to the associated link from the
// quickjump dropdown
function quickjump()
{		
 	 if (!document.getElementById("qjump")) return false;
 	 var selectJump = document.getElementById("qjump");
	 selectJump.onchange = function(){
	 	var url = selectJump.value;
		if(!url) return false;
		window.location = url;
	 }
	  
}


// code to hide/show the provide details input box on the Need help page
function show_insbeforedetails() {
	var id = "provide-details";
	var elt = document.getElementById(id);
	elt.style.display = 'block';
}


function hide_insbeforedetails() {
	var id = "provide-details";
	var elt = document.getElementById(id);
	elt.style.display = 'none';
}
 
addLoadEvent(quickjump);
