﻿// JScript File

function abrefoto(URL){
    window.open(URL,"Imagem","width=320,height=250,scrollbars=YES,directories=no,location=no,menubar=no,resizable=no,status=no,titlebar=no,toolbar=no");
}

//configure menu width
var menuwidth=362

//configure scroll speed (1-10), where larger is faster
var scrollspeed=7

//specify meny content

////NO NEED TO EDIT BELOW THIS LINE////////////
var actualwidth=''
var ns_scroll

function fillup(){

if (document.all){

//test2.innerHTML=menucontents
actualwidth=test2.offsetWidth

}

else if (document.layers){

ns_scroll=document.ns_scrollmenu.document.ns_scrollmenu2
ns_scroll.document.close()
actualwidth=ns_scroll.document.width

}

}

window.onload=fillup

function moveleft_prod(){
if (document.all&& test2.style.pixelLeft>(menuwidth-actualwidth))
test2.style.pixelLeft-=scrollspeed
else if (document.layers&&ns_scroll.left>(menuwidth-actualwidth))
ns_scroll.left-=scrollspeed
lefttime=setTimeout("moveleft_prod()",50)
}

function moveright_prod(){
if (document.all&& test2.style.pixelLeft<0)
test2.style.pixelLeft+=scrollspeed
else if (document.layers&&ns_scroll.left<0)
ns_scroll.left+=scrollspeed
righttime=setTimeout("moveright_prod()",50)
}