//フォームの内容チェック
function FormCheck(){

  //「お名前」が入力されていない場合
  if(document.entry.namae.value == ""){
    alert("「お名前」を入力して下さい。");
    return;
  }

  //「メールアドレス」が入力されていない場合
  if(document.entry.mail.value == ""){
    alert("「メールアドレス」を入力して下さい。");
    return;
  }
  ResultStr = document.entry.mail.value.indexOf("@", 0);
  if(ResultStr == -1){
    alert("「メールアドレス」を入力して下さい。");
    return;
  }
  document.entry.target = "_blank";
  document.entry.action = "http://www.ikoyo.co.jp/hermes/cgi-bin/download.cgi";
  document.entry.submit();
}

//ヘルプウィンドウ表示-----------------------------------------------
function HistoryWinOpen(){
  //タイトルの設定
  TitleName = "HermesUSB";
  //リンク先
  HistoryLink = "history.htm";
  //ウィンドウオープン
  HistoryWindow = window.open(HistoryLink, TitleName, "width=570,height=300,left=0,top=0,scrollbars=yes,resizable=yes");
}
//-------------------------------------------------------------------

