function MyStore(strMsg) {
  var strDisplay = "Please select a store location.";
  if ((strMsg != null) && (strMsg.length > 0)) {
    strDisplay = strMsg;
  }
  alert(strDisplay);
}
