//<script>


function toggleTextOnly() {
	var sOldLocation = window.location.href;
	if (sOldLocation.indexOf('output') > 0) {
		var sNewLocation = sOldLocation.replace('output', 'textonly');
	}
	else {
		var sNewLocation = sOldLocation.replace('textonly', 'output');
	}
	window.location.href = sNewLocation;
}

function surfto(combo) {
	var myindex = combo.selectedIndex
	//alert(combo.options[combo.selectedIndex].value);
	if (combo.options[myindex].value != '') 
	{
		window.location.href = combo.options[myindex].value;
	}
}	
	


//</script>