function alertCheckIn(sBody){alertBox.setHeader("Alert");alertBox.setBody(sBody);alertBox.show();return false;}function populateBranchSelector(branchSelector){if(branchSelector!=null){branchSelector.selectedIndex=1;showCountryDesc(branchSelector.options[branchSelector.selectedIndex]);}}function showCountryDesc(SelectedItem){var oXMLHttpRequest=createXMLHttpRequest();oXMLHttpRequest.open("GET","/system/aspx/branchDetails.aspx?c="+SelectedItem.value,true);oXMLHttpRequest.onreadystatechange=function(){if(oXMLHttpRequest.readyState==4){try{var sList=oXMLHttpRequest.responseText;if(oXMLHttpRequest.status==200){document.getElementById("regionalData").innerHTML=sList+'<div class="horLine"><hr/></div>';}}catch(err){}}};oXMLHttpRequest.send(null);}function createXMLHttpRequest(){if(typeof XMLHttpRequest!="undefined"){return new XMLHttpRequest();}else{if(typeof ActiveXObject!="undefined"){return new ActiveXObject("Microsoft.XMLHTTP");}else{throw new Error("XMLHttpRequest not supported");}}}