function mmbciswitch(){
if (document.mmboption.option[0].checked){

mmbciswap(document.getElementById('mmbForm'), document.getElementById('checkinForm'));

}else{

mmbciswap(document.getElementById('checkinForm'), document.getElementById('mmbForm'));
}
}
function checkOLCICheck() {
olciCheck = document.getElementById('authority');
if (olciCheck.checked==false) {
document.getElementById('olciConsent').style.color='#c00';
return false;
} else {
document.getElementById('olciConsent').style.color='#555';
return true;
}
}
function updateOLCIButton() {
olciButton = document.getElementById('olciSubmit');
olciCheck = document.getElementById('authority');
if (olciCheck.checked==false) {
olciButton.className="arrow inactive";
} else {
olciButton.className="arrow";
document.getElementById('olciConsent').style.color='#555';
}
}
function mmbciswitch(){
if (document.mmboption.option[0].checked){

mmbciswap(document.getElementById('mmbForm'), document.getElementById('checkinForm'));

}else{

mmbciswap(document.getElementById('checkinForm'), document.getElementById('mmbForm'));
}
}
function mmbciswap( a, b )
{

a.elements["lastname"].value = b.elements["lastname"].value;
a.elements["bookingRef"].value = b.elements["bookingRef"].value;

a.parentNode.style.display='block';
b.parentNode.style.display='none';
}

