function openWin(pathURL,W,H)
{
	var popWin = window.open( pathURL, "SCA", "toolbar=no,location=no,status=no,menubar=no,scrollbars=YES,width=" + W + ",height=" + H + ",resizable=YES" );
	popWin.focus();
	return popWin;
}

//REMOVE THIS FILTER AFTER 9/9/2010
function validateMSY(){
	var cityFlightTools = document.getElementById("flighttools:CityTo")	
	var cityCitiesForm = document.getElementById("citiesForm:CityTo")	
	if(cityFlightTools){
		if(cityFlightTools.value == "239"){
			if(!document.forms['flighttools']['flighttools:roundTrip'][0].checked){
				alert("This flight can only be booked as a round trip.")
				return false
			}		
		}
	}
	if(cityCitiesForm){
		if(cityCitiesForm.value == "239"){
			if(!document.forms['citiesForm']['citiesForm:reporterType'][0].checked){
				alert("This flight can only be booked as a round trip.")
				return false
			}		
		}
	}

	return true
}
//REMOVE THIS FILTER AFTER 9/9/2010