//split out the popMsg for use with Wizard window
function popMSG() {
  var winparm = "";
  var corptype = "";
  window.name = "parent";

  var url = "includes/californiaMsg.jsp";

  winparm = "width=600,height=380,resizable=yes,scrollbars=yes";
  var hWnd = window.open(url,"MSG",winparm);
  if (hWnd != null) {
    if (hWnd.opener == null) {
      hWnd.opener = self; window.name = "home"; hWnd.location.href=url;
    }
  }
}