var votes=0;


function selectNominee(nomination,nominee)
{
	var vote=document.getElementById('vote_'+nomination);
	var block=document.getElementById('nominee_'+nomination+'_'+nominee);
	if(vote.value!=nominee)
	{
		for(i=0;i<9;i++)
		{
			if(i==0) document.getElementById('nominee_'+nomination+'_'+i).className='abstain';
			else document.getElementById('nominee_'+nomination+'_'+i).className='';
			if(i!=0) document.getElementById('status_'+nomination+'_'+i).innerHTML='Выбрать';
		}
		vote.value=nominee;
		votes=nominee;
		if(nominee==0) block.className='abstain selected';
		else block.className='selected';
		if(nominee!=0) document.getElementById('status_'+nomination+'_'+nominee).innerHTML='Твой выбор!';
	}
}


function isValidEmail(email)
{
	return (/^([a-z0-9_\-\+]+\.)*[a-z0-9_\-\+]+@([a-z0-9][a-z0-9\-]*[a-z0-9]\.)+[a-z]{2,4}$/i).test(email);
}


function submitForm (email, strict)
{
	if(isValidEmail(document.getElementById('email').value))
	{
		if(votes>0) document.voting.submit();
		else alert('Вы должны выбрать один из фильмов');
	}
	else alert('Укажите, пожалуйста, корректный адрес электронной почты');
}


function trim(s)
{
	s=s.replace(/^\s+/, ''); 
	return s.replace(/\s+$/, ''); 
}