function HighlightAll(theField) {
   var tempval = eval(theField);
   tempval.focus()
   tempval.select()
   window.status = "Contents highlighted. Right-click to Copy and Paste it!";
   setTimeout("window.status=''", 2400);
}