
var delayb4scroll=2000 //Specify initial delay before marquee starts to scroll on page (2000=2 seconds)
var marqueespeed=1 //Specify marquee scroll speed (larger is faster 1-10)
var pauseit=1 //Pause marquee onMousever (0=no. 1=yes)?
var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var actualheight=''

function scrollmarquee(){
if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8))
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
else
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
}

function initializemarquee(){
cross_marquee=document.getElementById("vmarquee")
cross_marquee.style.top=0
marqueeheight=document.getElementById("marqueecontainer").offsetHeight
actualheight=cross_marquee.offsetHeight
if (window.opera || navigator.userAgent.indexOf("Netscape/7")!=-1){ //if Opera or Netscape 7x, add scrollbars to scroll and exit
cross_marquee.style.height=marqueeheight+"px"
cross_marquee.style.overflow="scroll"
return
}
setTimeout('lefttime=setInterval("scrollmarquee()",30)', delayb4scroll)
}

if (window.addEventListener)
window.addEventListener("load", initializemarquee, false)
else if (window.attachEvent)
window.attachEvent("onload", initializemarquee)
else if (document.getElementById)
window.onload=initializemarquee

function noRightClick(){
  alert('All content in the TWR Website is Private and not for reproduction.')
  return false
}
function Netscape(e){
  if (document.layers||
       document.getElementById&&!document.all){
         if(e.which==2||e.which==3){
            noRightClick()
            return false
         }
       }
}
function Explore(){
  if (event.button==2){
    noRightClick()
    return false
  }
}
if (document.layers){
  document.captureEvents(Event.MOUSEDOWN)
  document.onmousedown=Netscape()
}
else if (document.all&&!document.getElementById){
document.onmousedown=Explore()
  }
  document.oncontextmenu=new Function(
  "noRightClick();return false")
  function newwindow()
{
window.open('prices.php','jav','width=700,height=450,resizable=no,screenX=200,screenY=200,left=400,top=10,');
}