<!--
window.focus();
function targetopener(mylink, closeme, closeonly)
{
if (! (window.focus && window.opener))return true;
window.opener.focus();
if (! closeonly)window.opener.location.href=mylink.href;
if (closeme)window.close();
return false;
}

function editData()
{
  var ln = document.dbl.lastname.value;
  var fn = document.dbl.firstname.value;
  var ct = document.dbl.city.value;
  var st = document.dbl.state.value;
  
  if( ln.length == 0 && fn.length == 0 && ct.length == 0 && st.length == 0 ){
    alert('At least one value MUST be entered!');
    return false;
  }
  return true;
}

//-->
