Hello all,
I have this custom made reservation form, all it does it pass the values of selected fields to the next page (form) when clicking "submit", all fields are submitting the values except 1 field the "country"
You can view the form on the main page of the site: [LINK]
And here is the code of the form (html/javascript)
I really appreciate your help.HTML Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <LINK href="../images.nsf/ImageStore/FR-avis.ico/$File/avis.ico" rel="SHORTCUT ICON"> <META content="Avis Lebanon is the leading car rental company in Lebanon with a fleet exceeding 200 cars" name="description"> <META http-equiv=imagetoolbar content=no> <LINK href="../../w3c/p3p.xml" rel=P3Pv1> <LINK href="scripts/win_ie_iQshare.css" rel=Stylesheet> <script type = "text/javascript"> var bgMemory; // save color information var fgMemory; var statusinfo = false; function mOver(cell, id, statustxt) { cell.style.cursor = 'hand'; cell.style.backgroundColor='#e6e6e6'; if (typeof document.getElementById(id + "cc") == "object") { Elem = document.getElementById(id + "cc"); bgMemory = Elem.style.backgroundColor; Elem.style.backgroundColor='#e6e6e6'; } if (typeof document.getElementById(id + "l") == "object") { Elem = document.getElementById(id + "l"); fgMemory = Elem.style.color; Elem.style.color='#3D6484'; } window.status=statustxt; statusinfo = true; return true; } function mOut(cell, id) { cell.style.cursor = 'hand'; cell.style.backgroundColor=''; window.status=""; if (typeof document.getElementById(id) == "object") { Elem = document.getElementById(id + "cc"); Elem.style.backgroundColor = bgMemory; } if (typeof document.getElementById(id + "l") == "object") { Elem = document.getElementById(id + "l"); Elem.style.color = fgMemory; } window.status=''; statusinfo = false; return true; } function mClick(cell) { if(event.srcElement.tagName=='TD') { cell.children.tags('A')[0].click(); } } </script> <script type = "text/javascript"> var xMonths = new Array( 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec' ); function getListValue( option_object ){return option_object[ option_object.selectedIndex ].value;} function setListValue( option_object, value ){ option_object.selectedIndex = value;} function addDays(myDate,days) { return new Date(myDate.getTime() + days*24*60*60*1000); } function init() { xToday = new Date(); yToday = addDays(new Date(),3); xMonth = xToday.getMonth(); xDay = xToday.getDate()-1; xYear = xToday.getYear()-2005; if (xYear < 2005) xYear=0; yMonth = yToday.getMonth(); yDay = yToday.getDate()-1; yYear = yToday.getYear()-2005; if (yYear < 2005) yYear=0; xF = document.forms['quickbooking']; setListValue( xF.country, xCountry ) setListValue( xF.ETAHour, 9 ) setListValue( xF.ETAMonth, xMonth ) setListValue( xF.ETADay, xDay ) setListValue( xF.ETAYear, xYear ) setListValue( xF.ETTHour, 9 ) setListValue( xF.ETTMonth, yMonth ) setListValue( xF.ETTDay, yDay ) setListValue( xF.ETTYear, yYear ) } function openhelp( hlpString ) { hlpWin = window.open( hlpString , 'Help', 'width=395,height=345,resizable=yes,scrollbars=yes,status=yes') hlpWin.focus(); } function doContinue( ) { xF = document.forms['quickbooking']; xCountry = getListValue( xF.country ); xETADay = getListValue( xF.ETADay ); xETAMonth = getListValue( xF.ETAMonth ); xETAYear = getListValue( xF.ETAYear ); xETAHour = getListValue( xF.ETAHour ); xETAMinute = getListValue( xF.ETAMinute ); xETA = xETADay + xMonths[ parseInt( xETAMonth )-1 ] + xETAYear.substr(2,2) + '/' + xETAHour + xETAMinute;xETTDay = getListValue( xF.ETTDay ); xETTMonth = getListValue( xF.ETTMonth ); xETTYear = getListValue( xF.ETTYear ); xETTHour = getListValue( xF.ETTHour ); xETTMinute = getListValue( xF.ETTMinute ); xETT = xETTDay + xMonths[ parseInt( xETTMonth )-1 ] + xETTYear.substr(2,2) + '/' + xETTHour + xETTMinute; xWizardNumber = xF.wizard_number.value; xName = xF.surname.value ; xParams = '&CTR=' + xCountry +'&Country=' + xCountry + '&ETA=' + xETA + '&ETT=' + xETT+ '&CNAM=' + xName + '&WIZ=' + xWizardNumber+'&SOR=0038780x'; url = 'http://book.rent-at-avis.com/avisonline/ibe.nsf/PrefillX?OpenAgent&ResStep=ReservationStep1&IBEOwner=EU&LNG=GB' + xParams;location.href = url; } window.onload = init; </script> <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script>![]()


Reply With Quote

Bookmarks