function newWindowOpen(newWindowURL,newWindowName,newWindowOptions) {
                 var windowOptions = newWindowOptions;
                 if (!newWindowOptions) {
                        windowOptions = 'scrollbars=yes,menubar=no,height=750,width=800,resizable=yes,toolbar=no,location=no,status=no';
                 }
                 var evalstr = newWindowName+" = window.open(newWindowURL,newWindowName,windowOptions);";
                 eval (evalstr);
}

function autoTab(original,destination) {
  if (original.getAttribute&&original.value.length==original.getAttribute("maxlength"))
    destination.focus()
}
