$("document").ready(function(){
                    
    removeEvents();
                  
});

function removeEvents()
{
	$(".remove").nyroModal({endShowContent:function(){

		$.ajaxSetup({ scriptCharset: "utf-8" ,contentType: "application/x-www-form-urlencoded; charset=UTF-8" });				
						
		$("#remove-popup #remove").click(function(){
			
			var data="";
							
			$("#remove-popup input[type=hidden]").each(function(){
				data+="&"+$(this).attr("name")+"="+$(this).attr("value");
			});
							
			$.ajax({
				type: "GET",
				url: "remove",
				data: data,
				success: function(msg){		
					//alert(msg);
					$.nyroModalRemove();
					location.reload();
				}
			});
			
		});
		
		$("#remove-popup #cancel").click(function(){
			$.nyroModalRemove();
		});
		
	}});

}
