//Specify the marquee's width (in pixels)
var marqueewidth=200
//Specify the marquee's height
var marqueeheight=125//
//Specify the marquee's scroll speed (larger is faster)
var speed=1
//Specify the marquee contents
var marqueecontents='<div class="a1">双六荘は新穂高温泉の入口に位置し、奥飛騨温泉郷の中でも平湯温泉と並ぶ古くからの温泉地です<br>当館は、先代が双六小屋を営んだ縁で「双六荘」と名付けました<br>新穂高ロープウェイにも近く、また雄大な北アルプスの飛騨側の出発点としても登山客に愛されています<br>登山だけでなく、奥飛騨の自然を体験される全ての方々を歓迎いたします。ぜひ当館をご利用いただけますようお待ち申し上げます</div>'

if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",100)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}

window.onload=regenerate2

