$(document).ready(function() {
	$('#deltorrents').dataTable( {
		"oLanguage": {
			"sUrl": "tpls/fr_FR.txt"
		}
	} );
} );

function delete_confirm(confirm_msg)
{
	//loading();
	body_self = document.getElementsByTagName('body');
	body_self[0].style.filter = 'Alpha(opacity="60")';
	body_self[0].style.MozOpacity = '0.6';
	body_self[0].style.opacity = '0.6';
	if (confirm(confirm_msg))
	{
		body_self[0].style.filter = 'Alpha(opacity="100")';
		body_self[0].style.MozOpacity = '1';
		body_self[0].style.opacity = '1';
		return true;
	}
	else
	{
		body_self[0].style.filter = 'Alpha(opacity="100")';
		body_self[0].style.MozOpacity = '1';
		body_self[0].style.opacity = '1';
		return false;
	}
}
