var fcontent=new Array();
// Printing 10
/*
Fading Scroller- By DynamicDrive.com
For full source code, 100's more DHTML scripts, and TOS,
visit http://www.dynamicdrive.com
*/
var delay=8000; //set delay between message change (in miliseconds)
fcontent[0]="Sony PS3 firmware update 2.35
Sony has released a new firmware update for the Playstation 3, version 2.35.";
fcontent[1]="Noise pollution maps put online
'Noise maps' measuring the noise from airports, railways and roads have been made available online.
";
fcontent[2]="Watch FA Cup final online
Portsmouth face Cardiff City in the FA Cup final today and you can watch all the action online.";
fcontent[3]="Bill Gates unveils Touch Wall
Microsoft boss Bill Gates has unveiled touchscreen technology which he claims will cover every surface of the home and office.";
fcontent[4]="Play.com site relaunched
The Play.com website has been relaunched with a new colour scheme and improved search facilities.
";
fcontent[5]="Kids don't know download laws
More than two-thirds of kids are not aware that downloading music or videos from some file-sharing services is illegal.
";
fcontent[6]="Watch Moto GP live online
It's the French Moto GP at Le Mans this weekend and you can see all the action live online.";
fcontent[7]="Google Translate tool expanded
Translating text or entire webpages from Swedish, Polish or Hindi is now an option with Google's Translate service.
";
fcontent[8]="Yahoo intros SearchMonkey
A new tool introduced by Yahoo should enable surfers to get more relevant results when searching the web.
";
fcontent[9]="Storm's adware links uncovered
Security researchers have linked the Storm botnet with Zango, a company that makes software commonly flagged by antivirus products as adware.
";
begintag='Latest News: '
closetag=''
var fwidth=470 //set scroller width
var fheight=18 //set scroller height
///No need to edit below this line/////////////////
var ie4=document.all&&!document.getElementById
var ns4=document.layers
var DOM2=document.getElementById
var faderdelay=0
var index=0
if (DOM2) {
faderdelay=1
}
//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
}
else if (ie4)
{
document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag
}
else if (ns4){
document.fscrollerns.document.fscrollerns_sub.document.write(begintag+fcontent[index]+closetag)
document.fscrollerns.document.fscrollerns_sub.document.close()
}
index++
if(fcontent.length>1) {
setTimeout("changecontent()",delay+faderdelay)
}
}
// colorfade() partially by Marcio Galli for Netscape Communications. ////////////
// Modified by Dynamicdrive.com
frame=20;
hex=0 // Initial color value.
function colorfade() {
// 20 frames fading process
if(frame>0) {
hex+=12; // increase color value
document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.
frame--;
setTimeout("colorfade()",20);
}
else{
document.getElementById("fscroller").style.color="rgb(255,255,255)";
frame=20;
hex=255
}
}
if (ie4||DOM2)
document.write('