//************************************
//* http://members.rogers.com/bazil/ *
//      Vasile Birsan/Barsan         *
//************************************
//-- Begin Scroller's Parameters -->

//scroller width: change to your own;
var swidth=155

//scroller height: change to your own;
var sheight=80

//background color: change to your own; 
var sbcolor="#e8e8e8"

//scroller's speed: change to your own;
var sspeed=2

var wholemessage=''

//text: change to your own

wholemessage='<div align="left" class=text4>"General Ecology\'s products performed and stood up to all of their claims if not surpassing them.<br><b>TOM WHITTAKER</b></div>'+
'<div align="left" class=text4><br>"First Need water purifiers are the best and most useful purifiers currently on the market. We strongly recommend their use on any trek, climb, or visit to any areas..."<br><b>BOB COOLBAUGH</b></div>'+
'<div align="left" class=text4><br>"It\'s excellent and easy to use. I feel very secure with it even in very compromised water sources"<br><b>BH, PA U.S.A</b></div>'+
'<div align="left" class=text4><br>"Great Product I have been a user for over 10 years"<br><b>JH, ID U.S.A</b></div>'+
'<div align="left" class=text4><br>"Best Pump I\'ve ever used! We\'ve been canoeing for 20 yrs - It\'s the best" <br><b>JO, CT U.S.A</b></div>'+
'<div align="left" class=text4><br>"The best water purification system I\'ve ever used"<br><b>JC, MD U.S.A</b></div>'+
'<div align="left" class=text4><br>"Perfect for making baby\'s formula when using overseas tap water."<br><b>JW, U.K.</b></div>'+
'<div align="left" class=text4><br>"Had original First Need for years. Great Product" <br><b>HZ, WA U.S.A.</b></div>'+
'<div align="left" class=text4><br>"Used First Need for 5 months travel in India - very pleased w/ product."<br><b>LN, CA U.S.A</b></div>'+
'<div align="left" class=text4><br>"I liked my first one so much I bought another"<br><b>PP, WY U.S.A</b></div>'+
'<div align="left" class=text4><br>"Used in Honduras ... make water for 6 adults. Worked great! Easy to use 3-4 gallons a day." <br><b>CW, TX U.S.A</b></div>'+
'<div align="left" class=text4><br>"General Ecology: often imitated, never duplicated: Many Thanks:"<br><b>SM, OK U.S.A</b></div>'+
'<div align="left"></div>';
//-- end Parameters-->
//-- begin: Scroller's Algorithm -->

var resumesspeed=sspeed
function start(){
if (document.all) iemarquee(slider);
else if (document.getElementById)
ns6marquee(document.getElementById('slider'));
else if(document.layers)
ns4marquee(document.slider1.document.slider2);
}
function iemarquee(whichdiv){
iediv=eval(whichdiv)
iediv.style.pixelTop=sheight
iediv.innerHTML=wholemessage 
sizeup=iediv.offsetHeight
ieslide()
}
function ieslide(){
if (iediv.style.pixelTop>=sizeup*(-1)){
iediv.style.pixelTop-=sspeed
setTimeout("ieslide()",100)
}
else{
iediv.style.pixelTop=sheight
ieslide()
}
}
function ns4marquee(whichlayer){
ns4layer=eval(whichlayer)
ns4layer.top=sheight
ns4layer.document.write(wholemessage)
ns4layer.document.close()
sizeup=ns4layer.document.height
ns4slide()
}
function ns4slide(){
if (ns4layer.top>=sizeup*(-1)){
ns4layer.top-=sspeed
setTimeout("ns4slide()",100)
}
else{
ns4layer.top=sheight
ns4slide()
}
}
function ns6marquee(whichdiv){
ns6div=eval(whichdiv)
ns6div.style.top=sheight
ns6div.innerHTML=wholemessage
sizeup=ns6div.offsetHeight
ns6slide()
}
function ns6slide(){
if (parseInt(ns6div.style.top)>=sizeup*(-1)){
ns6div.style.top=parseInt(ns6div.style.top)-sspeed
setTimeout("ns6slide()",100)
}
else{
ns6div.style.top=sheight
ns6slide()
}
}
//-- end Algorithm -->
