function go_to_station() {
if (document.stationform.stationselect.options[0].selected) {
window.location.href = "index.htm";} 
else if (document.stationform.stationselect.options[1].selected) {
window.location.href = "catalog/index.asp";}
else if (document.stationform.stationselect.options[2].selected) {
window.location.href = "level_1/specials.htm";}   
else if (document.stationform.stationselect.options[3].selected) {
window.location.href = "level_1/newproducts.htm";}    
return true;    
}
function textValue() {   
var stationInteger, stationString       
stationInteger=document.stationform.stationselect.selectedIndex 
stationString=document.stationform.stationselect.options[stationInteger].text   
document.stationform.stationtext.value = "Go to " + stationString +"!"
}
