/*function onSubmitUpdateVoter(form){
	var poll_id = form.poll_ID.value;
	form.voter_name.value = document.getElementById("voter_name"+poll_id).value;
	form.voter_email.value = document.getElementById("voter_email"+poll_id).value;
	return true;
}*/
function onClickShowContactInfo(div_name){
	var poll_contact =document.getElementById(div_name);
        if (poll_contact != undefined) poll_contact.style.display = 'block';
	return true;
}
