// JavaScript Document
// Reconstructed from reference material on JavascriptSource.com
// © 2011 by Rodan Media for the Florida Travel Network
// CheapFloridaHotel.com

function pickCity(viewcity){
var URL = document.viewcity.getcity.options[document.viewcity.getcity.selectedIndex].value;
window.location.href = URL;
}

function pickPOI(viewpoi){
var URL = document.viewpoi.getpoi.options[document.viewpoi.getpoi.selectedIndex].value;
window.location.href = URL;
}

function pickAirport(viewairport){
var URL = document.viewairport.getairport.options[document.viewairport.getairport.selectedIndex].value;
window.location.href = URL;
}

// EXAMPLE FUNCTION
function functionName(formName){
var URL = document.formName.selectName.options[document.formName.selectName.selectedIndex].value;
window.location.href = URL;
}
