

//Specify the marquee's width (in pixels)
var marqueewidth="185px"
//Specify the marquee's height
var marqueeheight="150px"
//Specify the marquee's marquee speed (larger is faster 1-10)
var marqueespeed=2
//Pause marquee onMousever (0=no. 1=yes)?
var pauseit=1

//Specify the marquee's content
//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):

var marqueecontent=' <div align="justify"><font size="-3" face="Arial" class="top_marquee" ><b>DA701B</b>&nbsp;I can watch Freeview TV in perfect quality where I live and still enjoy the analogue TV at the caravan site where the Freeview signal is not so good. The built-in battery offers freedom to take the TV anywhere I want, so I won\'t miss the nice sunshine and fresh air in the garden. My husband loves it too and we plan to take it with us when we have holiday in Spain.<br><b>Sarah Smith&nbsp;&nbsp;20 April 2007</b><br> <br><hr><br> <b>DA110BD</b>&nbsp; I bought it for my son to use in his HGV wagon. He tells me that it is a great success even without a dedicated aerial. At home it is also excellent. We thought it would be better having a larger screen but the 11" is fine, especially in a confined lorry cab. The DVD plays fine. All in all seems pretty good value all around.<br><b>J Bickerton&nbsp;&nbsp;2 Feb 2008</b><br> <br> <hr><br><b>DA920A</b>&nbsp; A brilliant product - what more can I say. This portable TV is exactly what I wanted. I can now make my cards and cross stitch whilst watching my favorite programs up in the study. I had to buy more efficient TV antennae and now get all available stations on Freeview. The quality of the picture is excellent. I would not hesitate to recommend this product.<br><b>June Curtin&nbsp;&nbsp;11 July 2007</b><br><br><hr><br><b>DA700B</b>&nbsp;I found the sleep and wake up function very useful, I like falling asleep while watching TV. It can also be set up to turn on automatically or pop out a message to remind me the show I want to watch on a different channel. The interactive teletext service is very useful as well; easily catch up with the latest news in the world, sports, or what will be on.<br><b>Becky G&nbsp;&nbsp;26 Sep 2008</b><br><br><hr><br><b>DA110CD</b>&nbsp;Excellent item, I bought this primarily to use in my camper van. It is just a nice size and fits perfectly on the side wall. The screen and colour are really good. The DVD works perfectly, even the TV reception is good but you do need a good quality aerial to receive a reasonable picture and of course need to be in a good reception area.<br><b>R A Lampert&nbsp;&nbsp;16 Aug 2008</b><br><br><hr><br><b>DVB201</b>&nbsp;Hassle free Freeview viewing. Easy to set up and good reception, as stated by other users, by using the external connection to the aerial, rather than the tiny one supplied. Cannot really fault the item in any way; Remote worked from over 7m length. Great item! Definitely recommend it!<br><b>D Kalianidis&nbsp;&nbsp;10 July 2008</b><br><br><hr><br><b>PD712A</b>&nbsp;We bought this DVD player to keep our Ben entertained on long journeys in the car, and we are very pleased with it. The picture quality is brilliant, so does the sound, but better sound quality when using the earphone jack. The multi region feature plays discs we brought back from States and it plays DVIX format and recorded discs. The built-in TV function is a good extra to have which means Ben can watch his program and we can watch ours on the big TV.<br><b>V Rothwell&nbsp;&nbsp;30 Sep 2008</b><br><br></font></div>'


////NO NEED TO EDIT BELOW THIS LINE////////////

marqueespeed=1 //slow speed down by 1 for NS
var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var iedom=document.all||document.getElementById
var actualheight=''
var cross_marquee, ns_marquee

function populate(){
if (iedom){
cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
cross_marquee.innerHTML=marqueecontent
actualheight=cross_marquee.offsetHeight
}
else if (document.layers){
ns_marquee=document.ns_marquee.document.ns_marquee2
ns_marquee.top=parseInt(marqueeheight)+8
ns_marquee.document.write(marqueecontent)
ns_marquee.document.close()
actualheight=ns_marquee.document.height
}
lefttime=setInterval("scrollmarquee()",20)
}
window.onload=populate

function scrollmarquee(){

if (iedom){
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"
}
else if (document.layers){
if (ns_marquee.top>(actualheight*(-1)+8))
ns_marquee.top-=copyspeed
else
ns_marquee.top=parseInt(marqueeheight)+8
}
}

if (iedom||document.layers){
with (document){
if (iedom){
write('<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">')
write('<div id="iemarquee" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee">')
write('<layer name="ns_marquee2" width='+marqueewidth+' height='+marqueeheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>')
write('</ilayer>')
}
}
}
