function newwin()
{
if (self != top) 
top.location.href="http://www.indiaresult.com";
}


function ChangeState()
	{
		if(document.frmChangeState.StateName.value != "Select State")
			{
				
				top.location.href=document.frmChangeState.StateName.value 
			}
	}



function Vote()
	{
	var votes = "" ;
		for(i=0;i<document.frmVote.Options.length;i++)
		{
			  if(document.frmVote.Options[i].checked)
			  {
			      votes = document.frmVote.Options[i].value;
			  }
		}
		if (votes == "")
		{
			alert("Please select an option!") ;
			return ;
		}
		id = document.frmVote.id.value;
		window.open('poll/poll.asp?options='+votes+'&id='+id,"Vote","width=340,height=220,resizable=no,scrollbars=yes,menubar=no,status=no");
	}
	
	
function autoIframe(frameId){
	try{
			frame = document.getElementById(frameId);
			innerDoc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
			objToResize = (frame.style) ? frame.style : frame;
			objToResize.height = innerDoc.body.scrollHeight;
			objToResize.width = innerDoc.body.scrollWidth ;
	}
	catch(err){
		window.status = err.message;
	}
}
	
