
function fixvals(element, message)
{
  
  alert(message);
  element.focus();
  if (element.type=="text")
     element.select();
}

