function OpenWindow(strURL,sWidth,sHeight){
     var winl = (screen.availWidth - sWidth ) / 2;
     var wint = (screen.availHeight - sHeight) / 2;
     winprops = 'height='+sHeight+',width='+ sWidth +',top='+wint+',left='+winl+'resizable=0'
	 return window.open(strURL, "", winprops);	 
}




function cmdPoll_Click(i,scount){
//try{
	var j;
	for(j=0;j<scount;j++){
		if (document.all.item("optPoll" + String(i))[j].checked == true){
			a = document.all.item("optPoll" + String(i))[j].value;
			break;
		}
	}
	
	//alert(j + ":" + a) ;
	//return;
	OpenWindow("poll_result.asp?PollID="+i+"&SectionSelected="+a,400,300);
//}
//catch(ex){}
}

function cmdResult_Click(i){
	OpenWindow("poll_result.asp?PollID="+i,400,300);
}