// To open the playlist drawer in screenshot/vid page
function open_mature_drawer() {
	$("#flag_content").hide();
	$("#playlist_add_drawer").hide();
	$("#flagcontent_block").slideDown(300);
}

// To close the playlist drawer in screenshot/vid page
function close_mature_drawer() {
	$("#flagcontent_block").slideUp(300,function(){$("#flag_content").show();$("#playlist_add_drawer").show();});
}


//Playlist Add Button's click event 
$("button#flagit").click(function(ele) {
	this.blur();							
	var value =$("select#flag_reason option:selected").val();					
	$("#flagit").after("<img src='/static/images/ajax-loader.gif' alt='' style='vertical-align: middle;' />");
	$.post('/misc/flag/',{'object_type':obj_type, 'object_id':obj_id, 'reason':value},function(data) {
			$("#flagit").next("img").remove();
			if(data['result'] == 'success'){
				$("#mature_form").hide();
				$("#flagcontent_success_msg em").html(data['note']);
				$("#flagcontent_success_msg").show();
			}else{
				$("#flagcontent_msg").html(data['note']);
			}
		}
		,'json');
});