var adrData = new Array() ;

adrData[0] = "US markets: Lackluster markets";
adrData[1] = "Commentary for Feb 03rd 2004 ";
adrData[2] = "Stagnancy continued to rule the roost in the US markets for the second day in a row, but not before both the benchmark indices witnessing movements on both sides of the breakeven. While a rise in stock prices of some heavyweights like Intel, Oracle and Alcoa gave the indices a lift, weakness in auto and machinery stocks along with the news of discovery of suspicious white powder found in the mailroom of Senate leader took some shine off the indices. After the huge run the stock markets have had in recent times, they seem to be taking a breather. While quite a few companies are scheduled to announce their results on Wednesday, focus would also be on reports on factory orders and services sector of the economy.";
adrData[3] = "Indian ADRs mostly remained weak on Tuesday. While ICICI Bank and Dr Reddy's managed to reverse their earlier declines, software and dotcom ADRs continued to trade weak. Among the winners, ICICI Bank emerged as the major gainer with gains of 4%. Dr Reddy was a close second with gains of around 3%. Among the losers, dotcom major Rediff edged lower by 5% and emerged as the major loser. VSNL also edged lower by a similar margin. ";




function adrShowData(website)
{
	if(website == 'tnt')
	{
		document.write("<p align=justify><font style='COLOR: #000000; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 22px; FONT-WEIGHT: normal; TEXT-DECORATION: none'>"+adrData[0]+"</font><br>");
		document.write("<font style='COLOR: #000000; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; FONT-SIZE: 11px; FONT-WEIGHT: normal; TEXT-DECORATION: none'>"+adrData[1]+"</font><br><br>");
		document.write("<font style='COLOR: #000000; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; FONT-SIZE: 11px; FONT-WEIGHT: normal; TEXT-DECORATION: none'>"+adrData[2]+"</font>");
		document.write("<font style='COLOR: #000000; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; FONT-SIZE: 11px; FONT-WEIGHT: normal; TEXT-DECORATION: none'>"+adrData[3]+"</font>");
 	}
	else
	{
		document.write("<p align=justify><font face=arial size=2><b>"+adrData[0]+"</b></font><br>");
		document.write("<font face=arial size=2>"+adrData[1]+"</font>");
		document.write("<p align=justify><font face=arial size=2>"+adrData[2]+"</font>");
		document.write("<p align=justify><font face=arial size=2>"+adrData[3]+"</font>");
		//document.write("<p align=justify><font face=arial size=2>"+adrData[4]+"</font>");
	}
}


