// JavaScript Document
function Rollover() 
{
	if(document.getElementsByTagName) 
	{
		var images = document.getElementsByTagName("img");
		for(var i=0; i < images.length; i++) 
			{
				if(images[i].getAttribute("src").match("_off."))
					{
						images[i].onmouseover = function() 
						{
							this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));
						}
						images[i].onmouseout = function() 
						{
							this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));
						}
					}
			}
	}
}

if(window.addEventListener) {
	window.addEventListener("load", Rollover, false);
}
else if(window.attachEvent) {
	window.attachEvent("onload", Rollover);
}

//画面サイズ変更
function Open(URL){
	window.open(URL,'window', 'width=340, height=320, menubar=no, toolbar=no, scrollbars=no, resizable=no')
}
//
/*function MovieOpen(){
window.open('http://rikon.athlete.co.jp/common/stream.html','動画','width=510,height=435,resizable=no,toolbar=no,titlebar=no,status=no');
}*/
function MovieOpen(){
window.open('http://www.home-one.jp/common/stream.html','動画','width=535,height=460,resizable=no,toolbar=no,titlebar=no,status=no');
}

//おしらせテキストオープン

function TxtOpen(filename){
window.open('http://www.home-one.jp/'+filename,'newswindow','width=635,height=500,resizable=yes,scrollbars=yes,toolbar=no,titlebar=no,status=no,menubar=no');
}
function news_op(filename){
window.open('http://www.home-one.jp/news/'+filename,'newswindow','width=635,height=500,resizable=yes,scrollbars=yes,toolbar=no,titlebar=no,status=no,menubar=no');
}
function media_op(filename){
window.open('http://www.home-one.jp/media/'+filename,'newswindow','width=635,height=500,resizable=yes,scrollbars=yes,toolbar=no,titlebar=no,status=no,menubar=no');
}
function press_op(filename){
window.open('http://www.home-one.jp/press/'+filename,'newswindow','width=635,height=500,resizable=yes,scrollbars=yes,toolbar=no,titlebar=no,status=no,menubar=no');
}
function sp_op(filename){
window.open('http://www.home-one.jp/special/'+filename,'newswindow','width=635,height=500,resizable=yes,scrollbars=yes,toolbar=no,titlebar=no,status=no,menubar=no');
}
function related_op(filename){
window.open('http://www.home-one.jp/related/'+filename,'newswindow','width=635,height=500,resizable=yes,scrollbars=yes,toolbar=no,titlebar=no,status=no,menubar=no');
}


function RegOpen(filename){
window.open('http://www.home-one.jp/'+filename,'newswindow','width=640,height=600,resizable=yes,scrollbars=yes,toolbar=no,titlebar=no,status=no,menubar=no');
}
function MovieOpen(filename){
window.open('http://www.home-one.jp/'+filename,'newswindow','width=350,height=350,resizable=no,scrollbars=yes,toolbar=no,titlebar=no,status=no,menubar=no');
}
/*function news_op(filename){
window.open('http://demo1.athlete.co.jp/news/'+filename,'newswindow','width=635,height=500,resizable=yes,scrollbars=yes,toolbar=no,titlebar=no,status=no,menubar=no');
}
function media_op(filename){
window.open('http://demo1.athlete.co.jp/media/'+filename,'newswindow','width=635,height=500,resizable=yes,scrollbars=yes,toolbar=no,titlebar=no,status=no,menubar=no');
}
function RegOpen(filename){
window.open('http://kyouiku.athlete.co.jp'+filename,'newswindow','width=640,height=700,resizable=yes,scrollbars=yes,toolbar=no,titlebar=no,status=no,menubar=no');
}
function MovieOpen(filename){
window.open('http://demo1.athlete.co.jp'+filename,'newswindow','width=350,height=350,resizable=no,scrollbars=yes,toolbar=no,titlebar=no,status=no,menubar=no');
}*/


// ポップアップ画像の表示
function lfDispPopup(id_name) {
	popup = document.getElementById(id_name).style;
	popup.visibility = "visible";
/*	popup.left = mX + sX + "px";
	popup.top = mY + sY + "px";*/
}

// ポップアップ画像の非表示
function lfDelPopup(id_name) {
	document.getElementById(id_name).style.visibility = "hidden";
}
function SelectTabs(vis,hid,tabid){
	var elm1=document.getElementById(vis);
	var elm2=document.getElementById(hid);
	if(elm1.style) 
	elm1.style.display='block';

	if(elm2.style) 
	elm2.style.display='none';

}
function clickmedia()
{
		var news=document.getElementById('t_news');
		var media=document.getElementById('t_media');
		news.setAttribute("src", news.getAttribute("src").replace("tab_", "tab2_"));
		media.setAttribute("src", media.getAttribute("src").replace("tab_", "tab2_"));

		
		
}
function clicknews()
{
	var news2=document.getElementById('t_news');
		var media2=document.getElementById('t_media');
		news2.setAttribute("src", news2.getAttribute("src").replace("tab2_","tab_"));
		media2.setAttribute("src", media2.getAttribute("src").replace("tab2_","tab_"));
}
//ニュース一覧ロールオーバー
function n_rool_on(idname) 
{
	var elm=document.getElementById(idname);
	elm.style.background='url(/img/top/on_news_all.jpg)';
	
}
function n_rool_off(idname_off) 
{
	var elm_off=document.getElementById(idname_off);
	elm_off.style.background='url(/img/top/news_all.jpg)';

}


