function SubmitForm(actionURL)
{
	var PerSign = /%/g
	var eCap = /ê/g
	actionURL = actionURL.replace(PerSign, "%25")
	actionURL = actionURL.replace(eCap, "%25EA")
	document.form2.action = actionURL	
	document.form2.submit();
}

function SubmitGateway(indexNum, actionURL)
{
	var newAction
	newAction = actionURL + "?pid=" + document.form2.pid[indexNum].value + "&g=" + document.form2.g[indexNum].options[document.form2.g[indexNum].options.selectedIndex].value
	window.location = newAction;
}

function SubmitGateway2(actionURL)
{
	var newAction
	newAction = actionURL + "?pid=" + document.form2.pid.value + "&g=" + document.form2.g.options[document.form2.g.options.selectedIndex].value
	window.location = newAction;
}

function SubmitOrbitzSort(actionURL)
{
	window.location = actionURL
}


function SubmitYahooSort(actionURL,sort)
{
	window.location = (actionURL + sort)
}

