var popularCounter = 0;
var dissCounter = 0;
var articleBody = new Array();
var articleTitle = new Array();

var articleBody1 = new Array();
var articleTitle1 = new Array();

function bookmark()
{
	answer = confirm("Are you want to bookmark this page?");
	if(answer = 0)
	{
		return false;
	}
	else
		{
				var ver = navigator.appName;
				var num = parseInt(navigator.appVersion);
				var url = "http://www.thinkdigit.com";
				var who = "Articles and Free Video download";
				
				if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
						window.external.AddFavorite(url,who);
						
					}else{
							alert("If you want to bookmark this page then please press Ctrl+D");
						 } 
	}
}

function popural()
{
	var articleId = new Array();
	
	
			a = 5;
		
				articleTitle[0] = 'CSS sets up new offshore NOC in Chennai';
			articleBody[0] = 'CSS has announced that it has set up a new offshore NOC (Network Operating Center) in Chennai Cybernet-SlashSupport (CSS), which provides Tech Sup..';
		
    			articleTitle[1] = 'ASUS Launches P320 PDA Phone';
			articleBody[1] = 'Following the recent launch of the Lamborghini ZX1, ASUSTek Computer Incorporated (ASUS) Taiwan announced the launch of their P320 PDA phone in India,..';
		
    			articleTitle[2] = 'Bosch presents intelligent IP video surveillance';
			articleBody[2] = 'Bosch held a state-of-the-art CCTV road show in New Delhi on Intelligent IP Video SurveillanceContinuing its growth trajectory with innovative pro..';
		
    			articleTitle[3] = '‘USB Safely Remove’ wins 100 Best Products of 2008..';
			articleBody[3] = '\'USB Safely Remove\' utility was honored by PC World magazine with a &quot;100 Best Products of 2008 Award&quot;\'USB Safely Remove\' utility, cr..';
		
    			articleTitle[4] = 'Avaya named to “World’s Most Ethical Companies” li..';
			articleBody[4] = 'Avaya has been named to World&rsquo;s Most Ethical Companies list for 2008 by The Ethisphere Institute and marks the second consecutive year Avaya has..';
		
    		textDisplay();
}

function textDisplay()
{
	
	if(popularCounter > 4 || popularCounter < 0)
	{
		popularCounter=0;
	}
	
	document.getElementById("popular").innerHTML = articleBody[popularCounter];
	document.getElementById("poptitle").innerHTML = articleTitle[popularCounter];
	selectTab(popularCounter, "popular");
	popularCounter++;
	setTimeout("textDisplay()",4000);
}

function selectTab(selectedTab, type) {
	selectedTab = parseInt(selectedTab)+1;
	var obj;
	if (type == "popular") {
		prefix = "p";
	}
	else{
		prefix = "d";
	}
	for(i=1; i<=5; i++) {
		obj = document.getElementById(prefix+i);
		if(i == selectedTab) {
			obj.innerHTML = '<span>'+i+'</span>';
		}
		else{
			obj.innerHTML = '<a href="#" onClick="displayText('+(i-1)+'); return false;">'+i+'</a>';
		}
	}
}

function displayText(counterNumber)
{
	selectTab(counterNumber, "popular");
	document.getElementById("popular").innerHTML = articleBody[counterNumber];
	document.getElementById("poptitle").innerHTML = articleTitle[counterNumber];
}

function mostDiscuss()
{
	
	var articleId = new Array();
	
			
				articleTitle1[0] = 'An Improved Office';
			articleBody1[0] = 'Even the best software has its limitations. Here are a few tools that can supercharge your Office experienceWhen it comes to Microsoft Office,..';
		
    			articleTitle1[1] = 'Hitachi launches privilege program';
			articleBody1[1] = 'Hitachi launches a nation-wide initiative that extends its hard disk drive channel partner networkHitachi Global Storage Technologies rolled out a..';
		
    			articleTitle1[2] = 'Little Helpers';
			articleBody1[2] = 'We become a bunch of happy computer users once we have all the essentials installed-Office (or OpenOffice.org), Firefox / Opera, and you know the rest..';
		
    			articleTitle1[3] = 'CA continues environmental friendly ways';
			articleBody1[3] = 'CA announces organic partnership with earthworms in ongoing environmental projectCA, the enterprise IT management software company, celebrates EAR..';
		
    			articleTitle1[4] = 'Hook ’em Up Right';
			articleBody1[4] = 'So you got a new set of 5.1 speakers. Great-way to go! Your next step would probably be to grab a bag of popcorn and settle down in front of your home..';
		
    		discussTextDisplay();
}

function discussTextDisplay()
{
	if(dissCounter > 4 || dissCounter < 0)
	{
		dissCounter=0;
	}
	
	
	document.getElementById("disBody").innerHTML = articleBody1[dissCounter];
	document.getElementById("disTitle").innerHTML = articleTitle1[dissCounter];
	selectTab(dissCounter, "discuss");
	dissCounter++;
	setTimeout("discussTextDisplay()",4000);
}


function displayDuscussText(counterNumber)
{
	document.getElementById("disBody").innerHTML = articleBody1[counterNumber];
	document.getElementById("disTitle").innerHTML = articleTitle1[counterNumber];
	selectTab(counterNumber, "discuss");
}
