<!--
function PopWin(Url,WinName,W,H){
	para = 'toolbar=yes,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,';
	para += 'width=' + W + ',height=' + H;
	window.open(Url,WinName,para);
}

var type = 'gif';  //image TYPE
var url = 'http://www.tbsradio.jp/ac/img/';  //image Pass
function ChgImg(name,flg){
  if(flg=="f"){
    document.images[name].src = url+name+'_ov.'+type;
	document.images["link_chimg"].src = url+"link_chimg"+ name.substring(8) +'.'+type;
  }
  else if(flg=="n"){
    document.images[name].src = url+name+'.'+type;
	document.images["link_chimg"].src = url+"link_chimg00."+type;
  }
  else if(flg=="e"){
    document.images[name].src = url+name+'_e.'+type;
  }
}

function popup(url){
	var window_location;
	window_location=window.open( url, "popup", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=no,width=400,height=350");
	window_location.focus();
}

//-->
