




/*
     FILE ARCHIVED ON 12:54:10 Feb 20, 2007 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 8:49:35 Oct 13, 2011.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
Fading Scroller- By DynamicDrive.com
For full source code, 100's more DHTML scripts, and TOS,
visit http://web.archive.org/web/20070220125410/http://www.dynamicdrive.com
*/

var delay=2000 //set delay between message change (in miliseconds)
var fcontent=new Array()
begintag='<font face="verdana" size=2>' //set opening tag, such as font declarations
fcontent[0]="<strong>E Business-Trade</strong><br>Provides You, Business Solutions , Web & Software Solutions, Trade Solutions, importers, exporters, retailers and other agencies to find trade opportunities."
fcontent[1]="<strong>E Business-Trade</strong><br> is a trade media publisher, B2B marketplace catering to the needs of Manufacturers and suppliers and Buyers worldwide."
fcontent[2]="E Business-Trade.com allows users to post and browse Business and trade related information on <a http://web.archive.org/web/20070220125410/http://www.ebusiness-trade.com>Business Trade</a>. "
fcontent[3]="<strong>Web Design</strong><br>E Business-Trade enhance web projects with advanced design in Flash and Offer high quality .  We are dedicated best services and satisfaction with perfection."
fcontent[4]="<strong>Web Hosting</strong><br>We offer cheap and quality controlled Web Hosting with 24 Hrs. customer support team."
fcontent[5]="<strong>Search Engine Optimization</strong><br>We provide this services with a guranted top 5 rank in any search engine with in 100 days."
closetag='</font>'

var fwidth=150 //set scroller width
var fheight=150 //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=2000

//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").style.color="rgb(255,255,255)"
document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
colorfade()
}
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++
setTimeout("changecontent()",delay+faderdelay)
}

// colorfade() partially by Marcio Galli for Netscape Communications.  ////////////
// Modified by Dynamicdrive.com

frame=20;
hex=255  // 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(0,0,0)";
frame=20;
hex=255
}   
}

if (ie4||DOM2)
document.write('<div id="fscroller" style="border:0px solid black;width:'+fwidth+';height:'+fheight+';padding:2px"></div>')

window.onload=changecontent
