function lightBox() {
	var content=document.getElementById('lightbox-content');
	if (!content) {
		var content=document.createElement('DIV');
		content.id='lightbox-content';
	}
	content.className='lightbox-content';
	with (content.style) {
		display='block';
		width=700+'px';
		height=300+'px';
		marginLeft=Math.round(-1*700/2)+'px';
		marginTop=Math.round(-1*300/2)+'px';
	}
	document.body.appendChild(content);
	var overlay=document.getElementById('lightbox-overlay');
	if (!overlay) {
		var overlay=document.createElement('DIV');
		overlay.id='lightbox-overlay';
	}
	overlay.className='lightbox-overlay';
	with (overlay.style) {
		display='block';
	}
	overlay.onclick=function(e) {
		var div=document.getElementById('lightbox-content');
		div.parentNode.removeChild(div);
		div=null;
		var div=document.getElementById('lightbox-overlay');
		div.parentNode.removeChild(div);
		div=null;
	};
	document.body.appendChild(overlay);
	content.innerHTML="<table id=\"Table_02\" width=\"700\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" bgcolor=\"#FFFFFF\"><tr><td><table id=\"Table_03\" width=\"700\" border=\"0\" cellpadding=\"0\" cellspacing=\"8\" bgcolor=\"#FFFFFF\"><tr><td class=\"infotitre\" align=\"left\"><a href=\"javascript:fermerPopup();\" class=\"lightbox-close\">close and visit the website</a>Beau & Bien is proceeding to a recall on the Nomad SMOON and Water SMOON lamps <br>in order to carry out compliance tests</td></tr><tr><td class=\"infotexte\">Due to quality problems, Beau et Bien has decided to recall all the Nomad and Water Smoon lamps with identification number between 1 and 4 400 (identification number placed underneath the lamp). <br><br>If you own one of this lamp, please stop using it and contact us by mail (<a href=\"mailto:beauetbien@wanadoo.fr\" class=\"infotexte\"> beauetbien@wanadoo.fr</a>) in order to proceed to compliance tests.<br><br><br>At the moment, tests are carried out in order to determine the causes of this quality problems reported.<br>2 solutions for your customers <br>- if the compliance tests give satisfactory results, we will send back the lamp <br>- if it is necessary, we will replace the lamp and send them a new one<br><br>Beau & Bien apology for any inconvenience caused by this recall procedure and thank you very much in advance to contribute efficiently to this recall procedure.</td></tr></table></td></tr></table>";
}
function fermerPopup() {
	var div=document.getElementById('lightbox-content');
	div.parentNode.removeChild(div);
	div=null;
	var div=document.getElementById('lightbox-overlay');
	div.parentNode.removeChild(div);
	div=null;
}
