﻿//Tabs
var activePollTabID="tab-poll1";

function ActivePollTab(newActiveTabID)
	{
	    if(newActiveTabID=="0" || newActiveTabID==null)
	    {
	        var hdQueryString = document.getElementById("hdQueryString");
	        if(newActiveTabID=="0")
	            newActiveTabID= hdQueryString.value;
	    }

	    if (newActiveTabID != activePollTabID)
	    {
	        document.getElementById(newActiveTabID).className = "tab-poll-on"; //active
	        document.getElementById(newActiveTabID+"-content").style.display="block";
	        document.getElementById(activePollTabID).className = "tab-poll-off"; //inactive tab-top1-inactive
	        document.getElementById(activePollTabID+"-content").style.display = "none";
	        activePollTabID = newActiveTabID;
	    }
	}
	
