
	function Left()
	{
		var sLeft = "";
		
		sLeft += "<table border='0' width='250' cellspacing='0' cellpadding='0'>";
		
		if(typeof getVotes == 'function')
		{
			sLeft +=getVotes();
		}
		
		if(typeof getContests == 'function')
		{
				
			sLeft +=getContests();
		}
		sLeft += "</table>";
		document.write (sLeft);
	}
