// Code by herick
function download_init() {
	// create dialog
	$('body').append('<div id="jqmWindow"></div>');
	$('#jqmWindow').append('<div id="jqmTitle"></div>');
	$('#jqmTitle').append('<a href="#" class="jqmClose" title="Fermer cette fenêtre">Fermer cette fenêtre</a>');
	$('#jqmWindow').append('<iframe frameborder="0" hspace="0" src="" id="jqmContent" name="jqmContent195"></iframe>');
	$('#jqmWindow').jqm({modal: true, overlay: 80, overlayClass: 'jqmOverlay'});
	$('.cell_download > a,.bt_download').click(function() {
		$('#jqmWindow').jqmShow();
		$('#jqmContent').attr({src: $(this).attr('href')});
		return false;
	});
};


// init download
$('document').ready(function() {
	download_init();
});
