//Tracking Parcel Small
function verify_businesspost() {
var themessage = "You are required to complete the following fields: ";
if (document.RefQuickPodSearchForm.lc_SearchValue.value=="") {
themessage = themessage + " - Tracking ID";
}
if (themessage == "You are required to complete the following fields: ") {
document.RefQuickPodSearchForm.submit();
}
else {
alert(themessage);
return false;
   }
}

