// First Colonial //

function confirmLink(Msg)
{
  var is_confirmed = confirm(Msg);
 if (is_confirmed) {
  return true;
 } else {
  return false;
 }
}

function MM_openBrWindow(theURL,winName,features) { //popup creator
 window.open(theURL,winName,features);
}

window.status="<?=$text['welcome']?> <?=$MySession->name_first?> <?=$MySession->name_last?>.";

function gotoNext(txtBlur, txtFocus, iLength)
{
        if (txtBlur.value.length >= iLength) {
                txtFocus.focus();
        }
}