function sample_code1() {

	var locationx = "New York - NYC JFK EWR"
    document.write(locationx);
}

function sample_code2() {

	var locationx = "London - LON"
    document.write(locationx);
}

function sample_code3() {

	var locationx = "Heathrow - LHR"
    document.write(locationx);
}

function sample_code4() {

	var locationx = "Los Angeles - LAX"
    document.write(locationx);
}

function sample_code5() {

	var locationx = "Boston - BOS"
    document.write(locationx);
}

function sample_code6() {

	var locationx = "Paris - PAR or CDG"
    document.write(locationx);
}

function sample_code7() {

	var locationx = "Frankfurt - FRA"
    document.write(locationx);
}

function sample_code8() {

	var locationx = "Madrid - MAD"
    document.write(locationx);
}

function sample_code9() {

	var locationx = "San Francisco - SFO"
    document.write(locationx);
}

function sample_code10() {

	var locationx = "Chicago - ORD"
    document.write(locationx);
}

function sample_code11() {

	var locationx = "Washington - IAD"
    document.write(locationx);
}

function sample_code12() {

	var locationx = "Rome - FCO"
    document.write(locationx);
}










