<!--

function setfocus() {
document.subForm.email.focus();
}

function checkForm() {
if (document.subForm.email.value == "") { 
  alert("Please enter your email address first");
  document.subForm.email.focus();
  return false; }
else { 
  popThis = window.open('http://hardcoretours.com/forms/confirmation.html', 'newWin', 'width=344,height=77,innerWidth=344,innerHeight=77,left=200,top=200,scrollbars=0,resizable=0,menubar=0,location=0,toolbar=0,status=0,directories=0');
  setTimeout('document.subForm.reset()', '6000');
  return true; }
}

// -->
