function newAppWin(target, name)
{
  window.open(target, name,'toolbar=no,menubar=no,resizable=yes,scrollbars=yes,width=1000');
}

function showDate()
{
  var d = new Date();
  document.write(d.toLocaleString());
}


function redirectOutput(form, name)
{
  var w = window.open('about:blank', name,'toolbar=no,menubar=no,resizable=yes,scrollbars=yes,width=1000');
  form.target = name;
  return true;
}
