/*!
 *  Copyright 2010 Mott MacDonald. All rights reserved
 */
function dayChange(){if(document.getElementById("days").selectedIndex!=0){document.getElementById("times").disabled=true;
document.getElementById("times").selectedIndex=0;
if(document.getElementById("staticTimes").options[0].value=="Select Hour"){document.getElementById("staticTimes").options[0]=null;
if(document.getElementById("staticTimes").selectedIndex==0){document.getElementById("staticTimes").selectedIndex=8
}}}else{document.getElementById("times").disabled=false;
document.getElementById("times").selectedIndex=1;
if(document.getElementById("staticTimes").options[0].value!="Select Hour"){insertSelectHoursOptionToStaticHoursDropdown();
document.getElementById("staticTimes").selectedIndex=0
}}}function insertSelectHoursOptionToStaticHoursDropdown(){var d=document.getElementById("staticTimes");
var c=document.createElement("option");
c.text="Select Hour";
c.value="Select Hour";
d.selectedIndex=0;
var b=d.options[d.selectedIndex];
try{d.add(c,b)
}catch(a){d.add(c,d.selectedIndex)
}}function timeChange(){var b=document.getElementById("staticTimes");
var a=document.getElementById("times");
if(a.selectedIndex!=0){b.selectedIndex=0
}else{b.selectedIndex=8
}}function staticTimeChange(){var b=document.getElementById("staticTimes");
var a=document.getElementById("times");
if(b.selectedIndex!=0){a.selectedIndex=0
}}function setCarParkTabDefaultSettings(){if(document.getElementById("days")!=null){document.getElementById("days").selectedIndex=0
}if(document.getElementById("times")!=null){document.getElementById("times").selectedIndex=1
}if(document.getElementById("staticTimes")!=null){if(document.getElementById("staticTimes").options[0].value!="Select Hour"){insertSelectHoursOptionToStaticHoursDropdown()
}document.getElementById("staticTimes").selectedIndex=0
}if(document.getElementById("carparksForm")!=null){document.getElementById("carparksForm").submit()
}};
