function mailer(eml)
{
	var file  = '/mail/mailrelay.php';
	mailr =
		window.open(file+'?'+eml, '_new',
		'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,'+
		'copyhistory=0,left=0,top=0,width=480,height=150');
	mailr.focus();
}

// Ouverture légende :
function oleg (note)
{
	layerNote = document.getElementById(note);
	layerNote.style.width = "400px";
	layerNote.style.visibility = "visible";
}

// Fermeture légende :
function fleg(note)
{
	layerNote = document.getElementById(note);
	layerNote.style.visibility = "hidden";
}

function image(img, wdt, hgt, ttl)
{
	imgw =
		window.open('', '_new',
		'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,'+
		'copyhistory=0,left='+(screen.width-wdt)/2+',top='+((screen.height-hgt)/2-16)+',width='+wdt+',height='+hgt);
	imgw.focus();
	imgw.document.write(
		'<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"\n>'
		+'<html><head>\n'
		+'<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"\n>'
		+'</head><body style="margin:0px 0px">\n'
		+'<img src="'+img+'" width="'+wdt+'" height="'+hgt+'" alt="'+ttl+'">'
		+'</body></html>\n');
	imgw.document.title = ttl;
	imgw.document.close();
}

function video_object_dailymotion(clip, width, height)
{
   var url = 'http://www.dailymotion.com/swf/'+clip+'&amp;colors=background:FFEBBD;glow:FFFFCF;foreground:913F13;special:FFD39C';
   document.write('<object width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" data="'+url+'">');
   document.write('<param name="movie" value="'+url+'" />');
   document.write('<param name="allowFullScreen" value="true" />');
   document.write('<param name="allowScriptAccess" value="always" /></object>');
}
