function Result()
	{
		var votes = "" ;
		for(i=0;i<document.frmVote.option.length;i++)
		{
			  if(document.frmVote.option[i].checked)
			  {
			      votes = document.frmVote.option[i].value;
			  }
		}
		if (votes == "") 
		{
			alert("Please select an option!") ;
			return ;
		}
		id = document.frmVote.Poll.value;
		window.open('Poll/PollResult.asp?options='+votes+'&id='+id,"Vote","width=300,height=185,resizable=no,scrollbars=no,menubar=no,status=no");
	}

function ShowResult()
{
votes = "";
id = document.frmVote.Poll.value;
window.open('Poll/PollResult.asp?options='+votes+'&id='+id,"Vote","width=300,height=185,resizable=no,scrollbars=no,menubar=no,status=no");
}
