// 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="/zik/oc_wait.jsp" id="jqmContent" name="jqmContent195"></iframe>');
	$('#jqmWindow').jqm({modal: true, overlay: 80, overlayClass: 'jqmOverlay'});
	$('.cell_download > a,.bt_download').click(function() {
		$('#jqmContent')[0].contentWindow.location.replace('/zik/oc_wait.jsp');
		$('#jqmWindow').jqmShow();
		$('#jqmContent')[0].contentWindow.location.replace($(this).attr('href'));
		return false;
	});
	$('.jqmClose').click(function() {
		$('#jqmWindow').jqmHide();
		$('#jqmContent')[0].contentWindow.location.replace('/zik/oc_wait.jsp');		
	});
};


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