
function getPollDataResponseHandler(ajaxResponse) {
	$('#pollBox').fadeOut('slow', function(){
		$(this).fadeIn('fast');
		$('#pollArea').html(ajaxResponse.responseText);
	});
} 


function isEmail(email){
        OK  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(email);
        if (!OK){
                return false;
        } else {
                return true;
        }
}
