try{
	document.getElementById("progressMsg").style.display="none";
}catch(ex){
}
function showPreload(hideId,sMod){
setSearchCrit(sMod);
	try{
		document.getElementById("progressMsg").style.display="block";
		document.getElementById(hideId).style.display="none";
	}catch(ex){
	}
}


function showPreloadPkg(hideId,sMod){
setSearchCritPkg(sMod);
	try{
		document.getElementById("progressMsg").style.display="block";
		document.getElementById(hideId).style.display="none";
	}catch(ex){
	}
}
// defined this array in the PleaseWait.jsp to effect the multilangual dates.
//var mnthArr=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
var rezgSearchSubHead = "Your Requested Search Criteria";
var sCritStr="<fieldset>"+
"<legend>"+rezgSearchSubHead+"</legend>";
//alert('hotHideChildData 2>'+hotHideChildData);
var _tbl="<table align=\"center\"  border=\"0\" cellspacing=\"1\" cellpadding=\"4\">";

var selMod="";
var critCont="";
function setSearchCrit(mod){
	if (""+mod+""=="undefined"){
		try{
		selMod=document.forms[0].engType.value;
		}catch(ex){
			return;
		}
	}else{
		selMod=mod;
	}

	if (selMod=="H"){
	critCont=""+_tbl+""+getHotCrit()+"</table>";
		try{
			if (getHotCrit()!=""){
				document.getElementById("progressMsgContent").innerHTML=""+sCritStr+""+critCont+"</fieldset>";
			}
		}catch(ex){}
	}else if(selMod=="F"){
	critCont=""+_tbl+""+getAirCrit()+"</table>";
		try{
			if (getAirCrit()!=""){
				document.getElementById("progressMsgContent").innerHTML=""+sCritStr+""+critCont+"</fieldset>";
			}
		}catch(ex){}	
	}else if(selMod=="G"){
	critCont=""+_tbl+""+getGroupCrit()+"</table>";
		try{
			if (getGroupCrit()!=""){
				document.getElementById("progressMsgContent").innerHTML=""+sCritStr+""+critCont+"</fieldset>";
			}
		}catch(ex){}	
	}else if(selMod=="C"){
	critCont=""+_tbl+""+getCarCrit()+"</table>";
		try{
			if (getCarCrit()!=""){
				document.getElementById("progressMsgContent").innerHTML=""+sCritStr+""+critCont+"</fieldset>";
			}
		}catch(ex){}	
	}else if(selMod=="A"){
	critCont=""+_tbl+""+getActCrit()+"</table>";
		try{
			if (getActCrit()!=""){
				document.getElementById("progressMsgContent").innerHTML=""+sCritStr+""+critCont+"</fieldset>";
			}
		}catch(ex){}	
	}
}

function setSearchCritPkg(mod){
	if (""+mod+""=="undefined"){
		try{
		selMod=document.forms[0].engType.value;
		}catch(ex){
			return;
		}
	}else{
		selMod=mod;
	}

	if (selMod=="H"){
	critCont=""+_tbl+""+getHotCrit()+"</table>";
		try{
			if (getHotCrit()!=""){
				document.getElementById("progressMsgContent").innerHTML=""+sCritStr+""+critCont+"</fieldset>";
			}
		}catch(ex){}
	}else if(selMod=="F"){
	critCont=""+_tbl+""+getAirCritPkg()+"</table>";
		try{
			if (getAirCritPkg()!=""){
				document.getElementById("progressMsgContent").innerHTML=""+sCritStr+""+critCont+"</fieldset>";
			}
		}catch(ex){}	
	}else if(selMod=="C"){
	critCont=""+_tbl+""+getCarCrit()+"</table>";
		try{
			if (getCarCrit()!=""){
				document.getElementById("progressMsgContent").innerHTML=""+sCritStr+""+critCont+"</fieldset>";
			}
		}catch(ex){}	
	}else if(selMod=="A"){
	critCont=""+_tbl+""+getActCrit()+"</table>";
		try{
			if (getActCrit()!=""){
				document.getElementById("progressMsgContent").innerHTML=""+sCritStr+""+critCont+"</fieldset>";
			}
		}catch(ex){}	
	}else if(selMod=="V"){
	critCont=""+_tbl+""+getVacCritPkg()+"</table>";
		try{
			if (getVacCritPkg()!=""){
				document.getElementById("progressMsgContent").innerHTML=""+sCritStr+""+critCont+"</fieldset>";
			}
		}catch(ex){}	
	}
}

function dateForm(val){
if (val.toString().length<2){
return "0"+val+"";
}else{
return val;
}
}

function retTr(title,val){
var __str="";
	try{
		__str+="<td align=\"right\" nowrap>"+title+" : </td>"+
		"<td align=\"left\" style=\"padding-right:30px;\" nowrap>"+val+"</td>";
	}catch(ex){}
return __str;
}


function getGroupCrit(){
var tmpS="";

var tmpS1="";
	
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keyEvent.value,""+document.forms[0].event.options[document.forms[0].event.selectedIndex].text+"</tr>");
	}catch(ex){}
	
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keySelectedProd.value,"Hotels")+"</tr>";
	}catch(ex){}
			
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keyPrarrival.value,""+dateForm(document.forms[0].cmbInDt_Hotels.value)+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(document.forms[0].cmbInMn_Hotels.value)-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+document.forms[0].cmbInYr_Hotels.value+"")+"</tr>";
	}catch(ex){}
	
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keyPrnights.value,document.forms[0].cmbNgt_Hotels.value)+"</tr>";
	}catch(ex){}	
	
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keyPrdeprt.value,""+dateForm(document.forms[0].cmbOutDt_Hotels.value)+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(document.forms[0].cmbOutMn_Hotels.value)-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+document.forms[0].cmbOutYr_Hotels.value+"")+"</tr>";
	}catch(ex){}
	
   
tmpS1="";
return tmpS;
}

function getHotCrit(){
var tmpS="";
var hotHideChildData ="N";
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keySelectedProd.value,"Hotels")+"</tr>";
	}catch(ex){}
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keyPrlocation.value,document.forms[0].searchCityName.value)+"</tr>";
	}catch(ex){}
var tmpS1="";
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keyPrarrival.value,""+dateForm(document.forms[0].cmbInDt_Hotels.value)+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(document.forms[0].cmbInMn_Hotels.value)-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+document.forms[0].cmbInYr_Hotels.value+"")+"</tr>";
	}catch(ex){}
	
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keyPrnights.value,document.forms[0].cmbNgt_Hotels.value)+"</tr>";
	}catch(ex){}	
	
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keyPrdeprt.value,""+dateForm(document.forms[0].cmbOutDt_Hotels.value)+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(document.forms[0].cmbOutMn_Hotels.value)-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+document.forms[0].cmbOutYr_Hotels.value+"")+"</tr>";
	}catch(ex){}
	
	tmpS+="</tr>";
	
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keyRooms.value,""+document.forms[0].cmbNoRm_Hotels.value+"");
	}catch(ex){}
	
	try{
		tmpS+=retTr(document.forms[0].keytotalAdults.value,document.forms[0].totAdlt_Hotels.value);		
	}catch(ex){}
	
	if(hotHideChildData!="Y"){		
		try{
			tmpS+=retTr(document.forms[0].keytotalChildren.value,document.forms[0].totChi_Hotels.value);
		}catch(ex){}	
	}
	tmpS+="</tr>";		

tmpS1="";
return tmpS;
}

function getAirCrit(){
var tmpS="";
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keySelectedProd.value,"Flights")+"</tr>";
	}catch(ex){}
	try{
		if (document.forms[0].tripType.value=="R"){
			tmpS+="<tr>\n"+retTr(document.forms[0].keyTriptype.value,document.forms[0].keyRoundtrip.value)+"</tr>";
		}else{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyTriptype.value,document.forms[0].keyOneway.value)+"</tr>";
		}
	}catch(ex){}
	try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyDeparting.value,""+document.forms[0].depLocName.value+"");
	}catch(ex){}
	try{
			tmpS+=""+retTr(document.forms[0].keyGoingto.value,""+document.forms[0].arrLocName.value+"")+"</tr>";
	}catch(ex){}
	
	if(document.forms[0].tripType.value=="R" ){
		var tmpS1="";
		try{
			tmpS1+="&nbsp;("+document.forms[0].keyTime.value+" : "+document.forms[0].cmbDepTime.value+" )"+"</tr>";
		}catch(ex){}
		try{
			var tAr=document.forms[0].depDate.value.split("-");
			tmpS+="<tr>\n"+retTr(document.forms[0].keyDepDate.value,""+dateForm(tAr[2])+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(tAr[1])-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+tAr[0]+" "+tmpS1+"")+"";
		}catch(ex){}

		var tmpS1="";
		try{
			tmpS1+="&nbsp;("+document.forms[0].keyTime.value+" : "+document.forms[0].cmbArrTime.value+" )";
		}catch(ex){}
		try{
			var tAr=document.forms[0].arrDate.value.split("-");
			tmpS+="\n"+retTr(document.forms[0].keyRtndate.value,""+dateForm(tAr[2])+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(tAr[1])-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+tAr[0]+" "+tmpS1+"")+"</tr>";
		}catch(ex){}
	}else{ // if one way trip then
		var tmpS1="";
		try{
			tmpS1+="&nbsp;("+document.forms[0].keyTime.value+" : "+document.forms[0].cmbDepTime.value+" )"+"</tr>";
		}catch(ex){}
		try{
			var tAr=document.forms[0].depDate.value.split("-");
			tmpS+="<tr>\n"+retTr(document.forms[0].keyDepDate.value,""+dateForm(tAr[2])+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(tAr[1])-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+tAr[0]+" "+tmpS1+"")+"";
		}catch(ex){}
	}
	
var tmpS1="";
	try{
			tmpS1+="&nbsp;&nbsp;&nbsp;&nbsp;"+document.forms[0].keySeniors.value+" : "+document.forms[0].cmbSeniors.value+"";
	}catch(ex){}
	try{
			tmpS1+="&nbsp;&nbsp;&nbsp;&nbsp;"+document.forms[0].keyChildren.value+" : "+document.forms[0].cmbChildren.value+"";
	}catch(ex){}
	try{
			tmpS1+="&nbsp;&nbsp;&nbsp;&nbsp;"+document.forms[0].keyInfant.value+" : "+document.forms[0].cmbInfant.value+"";
	}catch(ex){}
	try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyAdults.value,""+document.forms[0].cmbAdults.value+""+tmpS1+"")+"</tr>";
	}catch(ex){}
	try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyClas.value,""+document.forms[0].seatClass.value+"")+"</tr>";
	}catch(ex){}
	if (document.forms[0].elements["F_StopStatus"].checked){
		try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyPreferences.value,""+document.forms[0].nonStopStatus.value+"")+"</tr>";
		}catch(ex){}
	}
return tmpS;
}


function getAirCritPkg() {
var tmpS="";
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keySelectedProd.value,"Flights")+"</tr>";
	}catch(ex){}
	try{
		if (document.forms[0].tripType_Air.value=="R"){
			tmpS+="<tr>\n"+retTr(document.forms[0].keyTriptype.value,document.forms[0].keyRoundtrip.value)+"</tr>";
		}else{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyTriptype.value,document.forms[0].keyOneway.value)+"</tr>";
		}
	}catch(ex){}
	try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyDeparting.value,""+document.forms[0].depLocName_Air.value+"");
	}catch(ex){}
	try{
			tmpS+=""+retTr(document.forms[0].keyGoingto.value,""+document.forms[0].arrLocName_Air.value+"")+"</tr>";
	}catch(ex){}
	
	if(document.forms[0].tripType_Air.value=="R"){
var tmpS1="";
	try{
			tmpS1+="&nbsp;("+document.forms[0].keyTime.value+" : "+document.forms[0].cmbDepTime_Air.value+" )"+"</tr>";
	}catch(ex){}
	try{
			var tAr=document.forms[0].depDate_Air.value.split("-");
			tmpS+="<tr>\n"+retTr(document.forms[0].keyDepDate.value,""+dateForm(tAr[2])+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(tAr[1])-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+tAr[0]+" "+tmpS1+"")+"";
	}catch(ex){}

var tmpS1="";
	try{
			tmpS1+="&nbsp;("+document.forms[0].keyTime.value+" : "+document.forms[0].cmbArrTime_Air.value+" )";
	}catch(ex){}
	try{
			var tAr=document.forms[0].arrDate_Air.value.split("-");
			tmpS+="\n"+retTr(document.forms[0].keyRtndate.value,""+dateForm(tAr[2])+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(tAr[1])-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+tAr[0]+" "+tmpS1+"")+"</tr>";
	}catch(ex){}
	
	}else{ // in PKG one way trip
	
	var tmpS1="";
	try{
			tmpS1+="&nbsp;("+document.forms[0].keyTime.value+" : "+document.forms[0].cmbDepTime_Air.value+" )"+"</tr>";
	}catch(ex){}
	try{
			var tAr=document.forms[0].depDate_Air.value.split("-");
			tmpS+="<tr>\n"+retTr(document.forms[0].keyDepDate.value,""+dateForm(tAr[2])+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(tAr[1])-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+tAr[0]+" "+tmpS1+"")+"";
	}catch(ex){}
	
	
	}
	
var tmpS1="";
	try{
			tmpS1+="&nbsp;&nbsp;&nbsp;&nbsp;"+document.forms[0].keySeniors.value+" : "+document.forms[0].cmbSeniors_Air.value+"";
	}catch(ex){}
	try{
			tmpS1+="&nbsp;&nbsp;&nbsp;&nbsp;"+document.forms[0].keyChildren.value+" : "+document.forms[0].cmbChildren_Air.value+"";
	}catch(ex){}
	try{
			tmpS1+="&nbsp;&nbsp;&nbsp;&nbsp;"+document.forms[0].keyInfant.value+" : "+document.forms[0].cmbInfant_Air.value+"";
	}catch(ex){}
	try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyAdults.value,""+document.forms[0].cmbAdults_Air.value+""+tmpS1+"")+"</tr>";
	}catch(ex){}
	try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyClas.value,""+document.forms[0].seatClass_Air.value+"")+"</tr>";
	}catch(ex){}
	if (document.forms[0].elements["F_StopStatus"].checked){
		try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyPreferences.value,""+document.forms[0].nonStopStatus_Air.value+"")+"</tr>";
		}catch(ex){}
	}
return tmpS;
}

function getActCrit(){
tmpS="";
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keySelectedProd.value,"Activity")+"</tr>";
	}catch(ex){}
	try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyActivityType.value,""+document.forms[0].elements["A_ActType"].options[document.forms[0].elements["A_ActType"].selectedIndex].text+"")+"</tr>";
	}catch(ex){}
	try{
	if (document.forms[0].searchCityName.value=="undefined"){
			tmpS+="<tr>\n"&nbsp;"</tr>";
			}else{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyPrlocation.value,""+document.forms[0].searchCityName.value+"")+"</tr>";
			}
	}catch(ex){}
	
	try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyPrarrival.value,""+dateForm(document.forms[0].cmbInDt_Activities.value)+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(document.forms[0].cmbInMn_Activities.value)-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+document.forms[0].cmbInYr_Activities.value+"");
			
	}catch(ex){}
	
	try{
			tmpS+=""+retTr(document.forms[0].keyPrnightsinTown.value,document.forms[0].cmbNgt_Activities.value);
	}catch(ex){}
	
	try{
			tmpS+=retTr(document.forms[0].keyPrdeprt.value,""+dateForm(document.forms[0].cmbOutDt_Activities.value)+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(document.forms[0].cmbOutMn_Activities.value)-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+document.forms[0].cmbOutYr_Activities.value+"")+"</tr>";
	}catch(ex){}
return tmpS;
}

function getCarCrit(){
var tmpS="";
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keySelectedProd.value,"Car")+"</tr>";
	}catch(ex){}
	try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keycarType.value,""+document.forms[0].carType_Car.value+"")+"</tr>";
	}catch(ex){}
	try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keypickupLoc.value,""+document.forms[0].pickupLocName_Car.value+"");
	}catch(ex){}
	
	
	
var tmpS1="";
	try{
			tmpS1+="&nbsp;&nbsp;("+document.forms[0].keyTime.value+" : "+document.forms[0].pickupTime_Car.value+" )"+"</tr>";
	}catch(ex){}
	try{
			var tAr=document.forms[0].pickupDate_Car.value.split("-");
			tmpS+=retTr(document.forms[0].keypickupDate.value,""+dateForm(tAr[2])+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(tAr[1])-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+tAr[0]+" "+tmpS1+"")+"</tr>";
	}catch(ex){}
	
	
var tmpS1="";
	try{
			tmpS1+="&nbsp;&nbsp;("+document.forms[0].keyTime.value+" : "+document.forms[0].pickupTime_Car.value+")";
	}catch(ex){}
	try{
			//if(document.forms[0].elements[engType+"_ReturnCar"].checked){
			//	tmpS+="<tr>\n"+retTr(document.forms[0].keyretunLoc.value,""+document.forms[0].pickupLocName_Car.value+"");
			//}else{
				tmpS+="<tr>\n"+retTr(document.forms[0].keyretunLoc.value,""+document.forms[0].retupLocName_Car.value+"");
			//}
	
	}catch(ex){}
var tmpS1="";
	try{
			tmpS1+="&nbsp;&nbsp;("+document.forms[0].keyTime.value+" : "+document.forms[0].retTime_Car.value+" )";
	}catch(ex){}
	try{
			var tAr=document.forms[0].returnDate_Car.value.split("-");
			tmpS+=retTr(document.forms[0].keyreturnDate.value,""+dateForm(tAr[2])+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(tAr[1])-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+tAr[0]+" "+tmpS1+"")+"</tr>";
	}catch(ex){}
return tmpS;
}

function getVacCritPkg() {
var tmpS="";
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keySelectedProd.value,"Flights")+"</tr>";
	}catch(ex){}
	try{
		if (document.forms[0].tripType_Air.value=="R"){
			tmpS+="<tr>\n"+retTr(document.forms[0].keyTriptype.value,document.forms[0].keyRoundtrip.value)+"</tr>";
		}else{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyTriptype.value,document.forms[0].keyOneway.value)+"</tr>";
		}
	}catch(ex){}
	try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyDeparting.value,""+document.forms[0].depLocName_Air.value+"");
	}catch(ex){}
	try{
			tmpS+=""+retTr(document.forms[0].keyGoingto.value,""+document.forms[0].arrLocName_Air.value+"")+"</tr>";
	}catch(ex){}
	
	if(document.forms[0].tripType_Air.value=="R"){
var tmpS1="";
	try{
			tmpS1+="&nbsp;("+document.forms[0].keyTime.value+" : "+document.forms[0].cmbDepTime_Air.value+" )"+"</tr>";
	}catch(ex){}
	try{
			var tAr=document.forms[0].depDate_Air.value.split("-");
			tmpS+="<tr>\n"+retTr(document.forms[0].keyDepDate.value,""+dateForm(tAr[2])+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(tAr[1])-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+tAr[0]+" "+tmpS1+"")+"";
	}catch(ex){}

var tmpS1="";
	try{
			tmpS1+="&nbsp;("+document.forms[0].keyTime.value+" : "+document.forms[0].cmbArrTime_Air.value+" )";
	}catch(ex){}
	try{
			var tAr=document.forms[0].arrDate_Air.value.split("-");
			tmpS+="\n"+retTr(document.forms[0].keyRtndate.value,""+dateForm(tAr[2])+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(tAr[1])-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+tAr[0]+" "+tmpS1+"")+"</tr>";
	}catch(ex){}
	
	}else{ // in PKG one way trip
	
	var tmpS1="";
	try{
			tmpS1+="&nbsp;("+document.forms[0].keyTime.value+" : "+document.forms[0].cmbDepTime_Air.value+" )"+"</tr>";
	}catch(ex){}
	try{
			var tAr=document.forms[0].depDate_Air.value.split("-");
			tmpS+="<tr>\n"+retTr(document.forms[0].keyDepDate.value,""+dateForm(tAr[2])+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+mnthArr[Number(tAr[1])-1]+"<span style=\"margin-left:2px;margin-right:2px;\">/</span>"+tAr[0]+" "+tmpS1+"")+"";
	}catch(ex){}
	
	
	}
	
var tmpS1="";
	try{
			tmpS1+="&nbsp;&nbsp;&nbsp;&nbsp;"+document.forms[0].keySeniors.value+" : "+document.forms[0].cmbSeniors_Air.value+"";
	}catch(ex){}
	try{
			tmpS1+="&nbsp;&nbsp;&nbsp;&nbsp;"+document.forms[0].keyChildren.value+" : "+document.forms[0].cmbChildren_Air.value+"";
	}catch(ex){}
	try{
			tmpS1+="&nbsp;&nbsp;&nbsp;&nbsp;"+document.forms[0].keyInfant.value+" : "+document.forms[0].cmbInfant_Air.value+"";
	}catch(ex){}
	try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyAdults.value,""+document.forms[0].cmbAdults_Air.value+""+tmpS1+"")+"</tr>";
	}catch(ex){}
	try{
			tmpS+="<tr>\n"+retTr(document.forms[0].keyClas.value,""+document.forms[0].seatClass_Air.value+"")+"</tr>";
	}catch(ex){}
	try{
		tmpS+="<tr>\n"+retTr(document.forms[0].keyRooms.value,""+document.forms[0].cmbNoRm_Hotels.value+"");
	}catch(ex){}
	//if (document.forms[0].elements["F_StopStatus"].checked){
	//try{
	//		tmpS+="<tr>\n"+retTr(document.forms[0].keyPreferences.value,""+document.forms[0].nonStopStatus_Air.value+"")+"</tr>";
	//	}catch(ex){}
	//}
return tmpS;
}
