Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 941 | Rev 950 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 941 Rev 949
Line 489... Line 489...
489
 
489
 
490
function gererClicIllustrationsFiche() {
490
function gererClicIllustrationsFiche() {
491
	$('.illustration_cel').live('click', function() {
491
	$('.illustration_cel').live('click', function() {
492
		var url_image = $(this).attr('src');
492
		var url_image = $(this).attr('src');
493
		var titre = $('.nomenclature').first().text();
493
		var titre = $('.nomenclature').first().text();
494
		var url = urlPopup+"?module=popup-galerie&action=fiche&num_nom="+$(this).attr('title')+"&titre="+encodeURIComponent(titre)+"&url_image="+encodeURIComponent(url_image);
494
		var url = urlPopup+"?module=popup-galerie&action=fiche&num_nom="+$(this).attr('title')+"&titre="+encodeURIComponent(titre)+"&url_image="+encodeURIComponent(url_image)+"&referentiel="+REFERENTIEL;;
495
		window.open(url, $(this).attr('title'), 'directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no, width='+(400)+', height='+(375));
495
		window.open(url, $(this).attr('title'), 'directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no, width='+(400)+', height='+(375));
Line 496... Line 496...
496
	}); 
496
	}); 
497
	
497