﻿// 音声を鳴らす
path = 'voice/';
//path = 'http://cyberfan.jp/tsuioku/chr/voice/';

function soundPlay(name) {
  var option = '"' ;
  option += ' autostart="true"' ; // 自動再生
  option += ' loop="false"' ; // ループ再生
  option += ' style="position:absolute;bottom:100%;"' ; // スタイル

  document.getElementById('player').innerHTML = '<embed src="' + path + name + option + ' />' ;
  /* document.getElementById('stopbutton').disabled = false; */
}

function putVoiceButton(name, no) {
  var agent = navigator.userAgent;
  
  if (no < 10) {
    no = "0" + no;
  }

  if (agent.indexOf("Chrome") == -1 && agent.indexOf("Mac_PowerPC") == -1 ) {
    // IE, FireFox,Opera
    tag = '<button type="button" onclick=' ;
    tag += "'soundPlay(";
    tag += '"' + name + '_v' + no + '.mp3")';
    tag += "'>";
    tag += '<img src="voice' + no + '.png' + '" ';
    tag += 'alt="Voice' + no + '" width="100" height="72" border="0" /></button>';
  } else {
    // Google Chrome | Mac_PowerPC
    tag = '<a href="';
    tag += path + name + '_v' + no + '.mp3">';
    tag += '<img src="'+ 'voice' + no + '.png' + '" ';
    tag += 'alt="Voice' + no + '" width="100" height="72" border="0" /></a>';
  }

  //
  document.write(tag + "\n");
}

