//文書内のリンクでポーカー寿司点線除去
//但,イミジマップにリンクはフォーカスが消えない.
function bluring()
{ 
	if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG")
		document.body.focus(); 
}

document.onfocusin = bluring; 

//動畫POPUP
function mpOpen(conID)
{
	window.open("http://stmx.iple.com/Player/mediaPlay.asp?id=" + conID + "","prgMP","width=350, height=390");
	return ;
}

// BGM Player Play
function PlayBgm()
{
	top.frames[0].WMPlay.Play();
}

// BGM Player Stop
function StopBgm()
{
	top.frames[0].WMPlay.Stop();
}


//cookie setting
function SetCookie( name, value, expiredays )
{ 
	var todayDate = new Date();
	todayDate.setDate( todayDate.getDate() + expiredays ); 
	document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";" 
}