// JavaScript Document

function ifr(jpURL){
  waku.location = jpURL;
}

/**************************************************************** 
TODAY'S PROGRAM タブ切り替え
****************************************************************/ 
function ChDsp2(strShow,strHidden){ 
    var obj=''; 
    obj=document.all && document.all(strShow) || document.getElementById && document.getElementById(strShow); 
    obj.style.display = "block"; 
    obj=document.all && document.all(strHidden) || document.getElementById && document.getElementById(strHidden); 
    obj.style.display = "none"; 
} 
