function postForm() 
{
  document.getElementById('redirect').submit();
}
function onLoad() {
  window.setTimeout('postForm()', 1000);
}

