function onsub()
{
     var response = confirm("You are submitting information to an external page.\nAre you sure?");
if (response== true)
 {
   return true;  //or  document.form1.submit();  
 }
else
 {
  return false;
  }
}
