//
// SCRIPTS FRANCOIS SAVELLI
//
//
//
// Permet d'insérer une adrsse e-mail sans la rendre visible par les robots
function lien_mail(user, site)
{
//   user = "monNom";
//   site = "monsite.com";
   document.write('<a href=\"mailto:' + user + '@' + site + '\">');
   document.write(user + '@' + site + '</a>');
}

// Ouvre une fenêtre pour l'affichage d'une photo
function affiche_photo(titre,photo) {
	NewWindow = window.open("about:blank", "Photos", "toolbar=0, menubar=0, scrollbars=1, resizable=1, status=0, location=0");
	NewWindow.document.write('<html>\n<head>\n<title>'+titre+'</title>\n<link rel="StyleSheet" type="text/css" href="index.css" />\n</head>\n');
	NewWindow.document.write('<body>\n');
	NewWindow.document.write('<div style="text-align: center">\n<br /><br />\n');
	NewWindow.document.write('<img src="'+photo+'" border="0" />\n');
	NewWindow.document.write('</div>\n');
	NewWindow.document.write('</body>\n</html>\n');
}
