function tv_old(departureAirport,arrivalAirport,outboundDay,outboundMonthYear,returnDay,returnMonthYear) {
	var initialPath = "http://www.volagratis.com/vg1/search3.do?";
	var masterSite = initialPath;
	siteRef = URLencode(document.referrer);
	masterSite = masterSite + "departureAirport="+departureAirport;
	masterSite = masterSite + "&arrivalAirport="+arrivalAirport;
	masterSite = masterSite + "&outboundDay="+outboundDay;
	masterSite = masterSite + "&outboundMonthYear="+outboundMonthYear;
	masterSite = masterSite + "&returnDay="+returnDay;
	masterSite = masterSite + "&returnMonthYear="+returnMonthYear;
	masterSite = masterSite + "&numberOfAdults=2";
	masterSite = masterSite + "&numberOfChilds=0";
	masterSite = masterSite + "&numberOfInfants=0";
	masterSite = masterSite + "&trip=or";
	masterSite = masterSite + "&COBRANDED=VIAGGIARELOWCOST";
	location.href = masterSite;
}

function tv(departureAirport,arrivalAirport,outboundDay,outboundMonthYear,returnDay,returnMonthYear) {
	var initialPath = "http://www.volagratis.com/vg1/home.do?COBRANDED=VIAGGIARELOWCOST";
	var masterSite = initialPath;
	siteRef = URLencode(document.referrer);
	location.href = masterSite;
}

function tv_home() {
	var masterSite = "http://www.volagratis.com/vg1/home.do?COBRANDED=VIAGGIARELOWCOST";
	location.href = masterSite;
}

function URLencode(sStr) {
    return escape(sStr).replace(/\+/g, '%2C').replace(/\"/g,'%22').replace(/\'/g, '%27');
  }