
function goLoco(frm, sel) { 
	var goID = frm[sel].options[frm[sel].selectedIndex].value;
	if (goID != null && goID!='') {
		var goURL = 'index.htm?fx=location&loc_id='+ goID;
		document.location.href = goURL;
	}
}

function goDest(frm, sel) {
    var goID = frm[sel].options[frm[sel].selectedIndex].value;
	if (goID != null && goID!='') {
		var goURL = 'index.htm?fx=destination&loc_id='+ goID;
		document.location.href = goURL;
	}
}

function goGuide(frm, sel) {
    var goID = frm[sel].options[frm[sel].selectedIndex].value;
	if (goID != null && goID!='') {
		var goURL = 'index.htm?fx=guide&loc_id='+ goID;
		document.location.href = goURL;
	}
}

function openWIN(theURL,winName,features) {
 	window.open(theURL,winName,features);
}
