
/* 資格の大原：Websites Common JavaScript */
/* 最終更新日：2004-06-25 */
/* JS Programmed by Takashi Yanagiba */

//別窓オープンスクリプト
function popwin(theURL,winName,features) {
  window.open(theURL,winName,features);
}


//ストリーミング用
function mov(sFileName)
{
var mp = document.getElementById('oohara');
mp.FileName = sFileName;
mp.play();
}