function changeOrder(page, orderType) {
     window.location = page + "&order_type=" + orderType;
     //location.replace("http://www.yahoo.com");
     //window.location.href="http://www.example.com/"; 
} 

function changeSelection(page, orderType) {
     window.location = page + "&selection_type=" + orderType;
     //location.replace("http://www.yahoo.com");
     //window.location.href="http://www.example.com/"; 
} 

function confirmReservation(text){
	if(confirm(text)){
		document.reservationForm.submit();
	}
}
