<!--
function help(context)
{
  var winHelp;
  var height = 200;
  var width = 200;
  var left = ((screen.width - width) / 2);
  var top = ((screen.height - height) / 2);

  winHelp = window.open('help.asp?context='+context+'','Help','top='+top+',left='+left+',width='+width+',height='+height+'', false);
}

function customStatus(message)
{
  window.status=message;
}
//-->