function abet_oppose(movie_id, telethon_id, type)
{
    //判断COOKIE是否还存在
    var allow_type = {1:'abet_count', 2:'oppose_count'};
    if(allow_type[type])
    {
        if(telethon_id == '')
        {
            telethon_id = 0;
        }
        var is_active = $.cookie('goyeah_abet_oppose_'+movie_id+'_'+telethon_id);
        if(is_active == null)
        {
        	$.ajax({
        		type:"GET",
        		url:'index.php?control=abet_oppose&action=save&type='+type+'&movie_id=' + movie_id + '&telethon_id='+ telethon_id + "&rnd="+ Math.random(),
        		dataType: 'html',
        		success : function(msg){if(msg >0){$('#'+allow_type[type]).html(msg);}}
        		}
        	);
        }
        else
        {
            openStaticPopup('_register', {title:'', content:'今日已經投票'});
        }
    }
}
