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)?

////DO NOT EDIT BELOW THIS LINE////////////

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()",50)', delayb4scroll)
}

if (window.addEventListener)
window.addEventListener("load", initializemarquee, false)
else if (window.attachEvent)
window.attachEvent("onload", initializemarquee)
else if (document.getElementById)
window.onload=initializemarquee
////////Start Content Here//////////

function writeJS(){
var str='';
str+='<table width="145">';
str+='   <tr><td>';
str+='      <div id="marqueecontainer" onmouseover="copyspeed=pausespeed" onmouseout="copyspeed=marqueespeed">';
str+='        <div id="vmarquee" style="position: absolute; width: 145px; left: 1px; top: 1px; height: 175px;">';
str+='            <!--YOUR SCROLL CONTENT BELOW-->';
str+='     <h4>';
str+=' <p><span class="formtext_red_error">WE HAVE A NEW LOOK!<\/span><\/p> ';
str+=' <span class="formtext_red_error">Now Paying 10% for Hotel bookings<br \/> ';
str+='      made online!<\/b><\/span><p><span class="pagetext"> Travel Agent program';
str+='               <a href="http:\/\/agentrez.ian.com\/agency\/faq.html">Click Here<\/a><\/span><\/p>';
str+='      <p><span class="formtext">With the <a href="http:\/\/agentrez.ian.com\/agency\/agent_perks.html">BENNY BUCKS TRAVEL AGENT INCENTIVE PROGRAM<\/a><br \/>';
str+=' you can earn 2 Benny Bucks for each night you reserve with hotels.com.<\/span><\/p><span class="topNav">';
str+='      <\/span>';
str+='      <span class="formtext"><a href="http:\/\/agentrez.ian.com\/agency\/agent_perks.html">Click Here<\/a> for details about the easy and lucrative Travel Agent incentive';
str+='      program - Benny Bucks.<\/span>';
str+=' <p><span class="formtext_red_error">WE HAVE A NEW LOOK!<\/span><\/p> ';
str+=' <p><span class="formtext">Before signing up to our program, please read the <a href="http:\/\/agentrez.ian.com\/agency\/user_agreement.html">User Agreement<\/a>';
str+=' <\/font><\/font> <\/span><\/p>';
str+='              ';
str+='            <\/h4>';
str+='          <!--SCROLL CONTENT ABOVE-->';
str+='        <\/div>';
str+='      <\/div><\/td><\/tr><\/table>';
document.write(str);
}
writeJS();
