// JavaScript Document
function fondo(c, color, mascolor) {
c.style.backgroundColor=color;
c.style.color=mascolor;}

function SelectOption(op) {
		path = location.pathname.toLowerCase();
		dbpos = path.indexOf('.nsf')+4
		DBpath = "/" + path.substring(1,dbpos) + "/";
		switch(op) {
		case "destination":
		window.open('http://www.aviacsa.com/english/tickets/destinations/ACAPULCO/ACA_tourist_information.cfm','_self');
		break;
		case "sightseeing":
		window.open('http://www.aviacsa.com/english/tickets/destinations/ACAPULCO/ACA_sightseeing.cfm','_self');
		break;
		case "museum":
		window.open('http://www.aviacsa.com/english/tickets/destinations/ACAPULCO/ACA_museums.cfm','_self');
		break;
        case "activity":
		window.open('http://www.aviacsa.com/english/tickets/destinations/ACAPULCO/ACA_activities.cfm','_self');
            break;
		case "food":
		window.open('http://www.aviacsa.com/english/tickets/destinations/ACAPULCO/ACA_cuisine.cfm','_self');
            break;
        case "map":
		window.open('http://www.aviacsa.com/english/tickets/destinations/ACAPULCO/ACA_maps.cfm','_self');
            break;
		default:
		alert("In Construction");		
		}
		}
		