﻿var bytimer = null;
var ftimer = null;

function sayGoodbye(){
  bytimer = setTimeout('window.close()', 3500 );
}

function gohome(){
  window.location.href="/";
  }

function formsubmit(f){
  if ( checkForm2(f) ) {
    f.target = "dbox1";
  wopts = "resizable=yes,scrollbars=yes,status=no,height=500,width=800";
  newWin = window.open( "", "dbox1", wopts);
  f.submit();
  ftimer = setTimeout('gohome()', 500 );
    }
  }

function checkForm2(f){
if(f.c_name.value == "") { return false; }
if(f.c_company.value == "") { return false; }
if(f.c_addr.value == "") { return false; }
if(f.c_emaddr.value == "") { return false; }
return true;
}
