
	// NATIVE HUE
	// AUXILIARY ecmaSCRIPT FUNCTIONS
	// warpcore.js
	
	// author: adam polgar (adapted from scripts in the public domain)
	// license: free to share
	// version: 2004-1-20
	
	function hyperjump(selection) {
		eval("window.location='"+selection.options[selection.selectedIndex].value+"'");
		}
		
	function augmentprotocol() {
		if (document.comments_form.url.value == "") { document.comments_form.url.value = "http://"; }
		}
	
	function nixprotocol() {
		if (document.comments_form.url.value == "http://") { document.comments_form.url.value = ""; }
		}

	function showhide() {
		if (document.getElementById('settings-bar').style.display == 'none') {
			document.getElementById('settings-bar').style.display='block';
			document.getElementById('showsettings').style.display='none';
			document.getElementById('hidesettings').style.display='inline';
			document.getElementById('thearrow').src='http://www.maniacalrage.net/images/darrowup1.gif';
		} else {
			document.getElementById('settings-bar').style.display='none';
			document.getElementById('showsettings').style.display='inline';
			document.getElementById('hidesettings').style.display='none';
			document.getElementById('thearrow').src='http://www.maniacalrage.net/images/darrow.gif';
		}
	}