var newWin = null;

function closeWin(){
	if (newWin != null){
		if(!newWin.closed)
			newWin.close();
		}
	}

function popup(strURL, strWidth, strHeight) {
	closeWin();
	var strOptions="";
	strOptions="resizable,height=" + (strHeight + 20) + ",width=" + (strWidth + 20);
	newWin = window.open(strURL, 'newWin', strOptions);
	newWin.focus();
	}


var legendTxt = null;

function legendOn(txt) {
/*
	legendTxt = document.getElementById('images-legend').innerHTML;
	document.getElementById('images-legend').innerHTML = txt;
	document.getElementById('images-legend').style.borderColor = 'lightgrey';
	*/
}


function legendOff() {
/*
	document.getElementById('images-legend').innerHTML = legendTxt;
	document.getElementById('images-legend').style.borderColor = 'white';
*/
}


$(document).ready(function(){
	// On recrée le mail
	var b = 'lto';
	var e = '@';
	var c = ':';
	var f = '.';
	var a = 'mai';
	var d = 'parimix';
	var g = 'com';
	var x = a + b + c;
	var y = d + e + d + f + g;
	var z = '<' + 'a hr' + 'ef="' + x + y + '">' + y + '</' + 'a>';
   $('.mail').html(z)
   // lightbox pour les images
   // $('a.lb').lightBox();
 });

