/* Graph changer */

function graphMode(mode, uid)
{
	var domain = 'http://' + document.domain + '/';
	
	customChart = new FusionCharts(domain + "charts/FC_2_3_Line.swf?LoadDataErrorText=No votes yet", "sampleChart", "580", "260", "0", "1");

	switch(mode)
	{
		case 1:
		case 2:
			customChart.setDataURL(domain + "server/timeline.php?mode=" + mode +((uid)?'/'+uid:''));
			customChart.render("flashcontent");	  
			break;
		case 3:
		case 4:
			customChart.setDataURL(domain + "server/timeline.php?mode=" + mode);	
			customChart.render("flashvotes");	  
			break;
	}
	
	/* Now change styles */
	var pControl = document.getElementById('pControl');
	var links    = pControl.getElementsByTagName('A');
	
	for (i=0;i<links.length;i++)
	{
		links[i].className = links[i].id.indexOf('mode' + mode) == -1?'':'selGraphMode';
	}
}
