/*
Left-Right scrolling window Script-
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more free DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/
//change speed to another integer to alter the scrolling speed. Greater is faster
var speed=3
var currentpos=0,alt=1,curpos1=0,curpos2=-1
function initiate(){
startit()
}
function scrollwindow(){
if (document.all)
temp=document.body.scrollLeft
else
temp=window.pageXOffset
if (alt==0)
alt=1
else
alt=0
if (alt==0)
curpos1=temp
else
curpos2=temp
if (curpos1!=curpos2){
if (document.all)
currentpos=document.body.scrollLeft+speed
else
currentpos=window.pageXOffset+speed
window.scroll(currentpos,0)
}
else{
currentpos=0
window.scroll(currentpos,0)
}
}
function startit(){
setInterval("scrollwindow()",10)
}
function pagesize(url, h, w, t, s) {
    page=window.open(url,"page","height="+h+",width="+w+",toolbar="+t+",status="+s+",menubar=0,scrollbars=1,resizable=1,screenX=3,left=3,screenY=3,top=3")
    page.window.focus();
    if ( page.document.close() ) {
    page.document.close()
 }                       
}
function showpage(url) {
page=window.open(url,'page','menubar=0,scrollbars=1,status=1,resizable=1,width=465,height=400,screenX=3,left=3,screenY=3,top=3')
    page.focus();
}                       
function _Show_Item_() {
}                       
function donothing() {
}                       
function play(){
if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value != "none") {
location = document.selecter.select1.options[document.selecter.select1.selectedIndex].value
 }                       
}
function skip(){
for (H=0; H<=6225; H++);
window.scroll(H,10); 
}
