function stepOutToEdit(objFormToSubmit, strEditableType, strEditableGroup, strIDToEdit, lngEditAction)
{ objFormToSubmit.EDITABLETYPE.value = strEditableType; objFormToSubmit.EDITABLEGROUP.value = strEditableGroup; objFormToSubmit.IDTOEDIT.value = strIDToEdit; objFormToSubmit.EDITACTION.value = lngEditAction; objFormToSubmit.submit(); return true; }
function SetData(sMethod, rType)
{
	var q = "";
	
	if(top!=self)
	{
	    // awards formlet
	    
	    if(document.getElementById("_cityPair1__origin__cityName") && document.getElementById("_cityPair1__origin__cityName").value.indexOf('Where') == -1 )
	    {	q += "O=" + document.getElementById("_cityPair1__origin__cityName").value + "&";}
	    if(document.getElementById("_cityPair1__destination__cityName") && document.getElementById("_cityPair1__destination__cityName").value.indexOf('Where') == -1 )
	    {	q += "D=" + document.getElementById("_cityPair1__destination__cityName").value + "&";}
    	
	    if(document.getElementById("_departureDateTime__travelDate")){	q += "OD=" + document.getElementById("_departureDateTime__travelDate").value + "&";}
    	if(document.getElementById("_returnDateTime__travelDate")){	q += "DD=" + document.getElementById("_returnDateTime__travelDate").value + "&";}
	    if(document.getElementById("_departureDateTime__travelTime")){	q += "OT=" + document.getElementById("_departureDateTime__travelTime").value + "&";}
	    if(document.getElementById("_returnDateTime__travelTime")){	q += "DT=" + document.getElementById("_returnDateTime__travelTime").value + "&";}
	   
	    if(document.getElementById("_adults")){	q += "A=" + document.getElementById("_adults").value + "&";}
	    if(document.getElementById("_children")){	q += "C=" + document.getElementById("_children").value + "&";}
    	
    	if(document.getElementById("_shopPreference")){	q += "F=" + document.getElementById("_shopPreference").value + "&";}
	  
    	if(document.getElementById("_tripTypes__roundTrip")){	q += "RT=" + document.getElementById("_tripTypes__roundTrip").checked;}

    	if(rType.length > 0){	q += "&RequestType=" + rType;}
	    if(sMethod.length > 0){	q += "&ShoppingMethod=" + sMethod;}
	
	    top.location = "https://alaskaair.convertlanguage.com/alaskaair/enes/24/_www_alaskaair_com/shopping/ssl/ShoppingStart.aspx?" + q;
	}
	else
	{
	    // home page
	    
	    if(document.getElementById("UCAir1_UCOrigin__city") && document.getElementById("UCAir1_UCOrigin__city").value.indexOf('Where') == -1){	q += "O=" + document.getElementById("UCAir1_UCOrigin__city").value + "&";}
	    if(document.getElementById("UCAir1_UCDestination__city") && document.getElementById("UCAir1_UCDestination__city").value.indexOf('Where') == -1){	q += "D=" + document.getElementById("UCAir1_UCDestination__city").value + "&";}
	    if(document.getElementById("UCAir1__originDate")){	q += "OD=" + document.getElementById("UCAir1__originDate").value + "&";}
	    if(document.getElementById("UCAir1__destinationDate")){	q += "DD=" + document.getElementById("UCAir1__destinationDate").value + "&";}
	    if(document.getElementById("UCAir1__originTime")){	q += "OT=" + document.getElementById("UCAir1__originTime").value + "&";}
	    if(document.getElementById("UCAir1__destinationTime")){	q += "DT=" + document.getElementById("UCAir1__destinationTime").value + "&";}
	    if(document.getElementById("UCAir1__adults")){	q += "A=" + document.getElementById("UCAir1__adults").value + "&";}
	    if(document.getElementById("UCAir1__children")){	q += "C=" + document.getElementById("UCAir1__children").value + "&";}
	    if(document.getElementById("UCAir1_ECertControl_ECertBox") && document.getElementById("UCAir1_ECertControl_ECertBox").value.indexOf('Optional') == -1){	q += "E=" + document.getElementById("UCAir1_ECertControl_ECertBox").value + "&";}
	    if(document.getElementById("UCAir1__fareType")){	q += "F=" + document.getElementById("UCAir1__fareType").value + "&";}
	    if(document.getElementById("UCAir1__UCLowFareFinder__lowFareFinder")){	q += "L=" + document.getElementById("UCAir1__UCLowFareFinder__lowFareFinder").checked + "&";}
	    if(document.getElementById("UCAir1__roundTripRadio")){	q += "RT=" + document.getElementById("UCAir1__roundTripRadio").checked;}

        if(rType.length > 0){	q += "&RequestType=" + rType;}
	    if(sMethod.length > 0){	q += "&ShoppingMethod=" + sMethod;}
	
	    this.window.location="https://alaskaair.convertlanguage.com/alaskaair/enes/24/_www_alaskaair_com/shopping/ssl/ShoppingStart.aspx?" + q;
	}
	
	
	
}