function chkClick()
{
	//alert("chkClick");
	pLength=document.poll.length
	sub="No"
	for (var i = 0; i < pLength; i++){ 
	  	if(document.poll.elements[i].checked)
	    { sub="Yes" }
	}
	if(sub=="Yes"){ 
	  for (var i = 0; i < pLength; i++)
	  { 
	  if (document.poll.elements[i].checked){
		newWin(i+1)}
	  }
	}
	else{
	  alert ("Please click one of the above")	
	}
}
/////function to open result window ///////


function opw()
{
	window.open('content/newpoll/previouspollresults.asp','Poll','menubar=no,statusbar=no,toolbars=no,scrollbars=yes,width=470,height=550');
	//window.open('newpoll/previouspollresults.asp','Poll','menubar=no,statusbar=no,toolbars=no,scrollbars=yes,width=470,height=550');
	return false;
}
