
function showFareRulePopup(fareBasis, fareLabel)
{
	// Description:
	//	prints the fare rules in a browser popup instead of the javascript popup

	var fareRuleWindow = window.open("./skylights.cgi?page=FARE_RULE&fareBasis=" + fareBasis + "&fareLabel=" + fareLabel, "fareRuleWindow", "menubar=0,resizable=1,scrollbars=1,toolbar=0,directories=0,copyhistory=0,width=500,height=560");
	if(window.focus)
	{
		fareRuleWindow.focus();
	}
}

function showGeneralPopup()
{
	var generalInfoWindow = window.open("http://www.jetblue.com/about/legal/general.asp", "generalInfoWindow", "menubar=0,resizable=1,scrollbars=1,toolbar=0,directories=0,copyhistory=0,width=650,height=390");
	if(window.focus)
	{
		generalInfoWindow.focus();
	}
}