// ancho
var marqueewidth=325
// alto
var marqueeheight=380
// velocidad
var speed=2
// contenido
var marqueecontents='Welcome to the Official Comanche Creek Band Website! We are glad you stopped by... Sign our Guestbook.
Comanche Creek goes PINK for Christy!
Join us August 27th and 28th at the Crazy Horse Saloon in Denton. Check our calendar for more details and a map.
Comanche Creek T-Shirts, Caps, Koozies and Stickers are available at our shows!
Check our calendar for upcoming shows.'
if (document.all)
document.write('')
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",300)
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()",10)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2