<!-- Fonction pour activation balise blink sous IE -->
<!-- ============================================= -->
if ( document.all ) {
	function blink_show() {
		blink_tags  = document.all.tags('blink');
		blink_count = blink_tags.length;
		for ( i = 0; i < blink_count; i++ ) {
			blink_tags[i].style.visibility = 'visible';
		}
		window.setTimeout( 'blink_hide()', 700 );
	}
	
	function blink_hide() {
		blink_tags  = document.all.tags('blink');
		blink_count = blink_tags.length;
		for ( i = 0; i < blink_count; i++ ) {
			blink_tags[i].style.visibility = 'hidden';
		}
		window.setTimeout( 'blink_show()', 250 );
	}
	
	window.onload = blink_show;
}

<!-- Affichage POPUP -->
<!-- =============== -->
function PopupImage(img,fic,commentaire) {
	titre="www.wardleonard.fr - "+img+"";
	w=open("","",'width=750,height=650,toolbar=no,scrollbars=no,resizable=yes');	
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>");
	w.document.write("<BODY bgcolor='#001722'>");
	w.document.write("<TABLE width='100%' height='100%'><TR><TD align='center' valign='middle'>");
	w.document.write("<IMG style='border: 2px solid #FFFFFF;' src='"+fic+"' border=0><P><FONT style='color: #999999; font-size: 8pt; font-family: verdana;'><I>"+commentaire+"</I></FONT></P>");
	w.document.write("</TD></TR></TABLE>");
	w.document.write("</BODY>");
	w.document.write("</HTML>");
	w.document.close();
}

<!-- Diaporama -->
<!-- ========= -->
function ChangeImage() {
	if (num == -1) { num = (couv.length-1)}
	if(document.getElementById) {
		document.getElementById("zone").innerHTML = couv[num];
		num = num-1 
	}
	setTimeout("ChangeImage()", 5000);
}

<!-- Zoom photos -->
<!-- =========== -->
	<!-- Page photos -->
	<!-- =========== -->
	function zoom(fic) {
		document.getElementById("photo_box").innerHTML = "<IMG class='photo0' SRC='"+fic+"' HEIGHT='250'>";
	}

	<!-- Page histoire -->
	<!-- ============= -->
	function zoomover(fic) {
		document.getElementById("photo_box1").innerHTML = "<IMG class='photo' SRC='"+fic+"' WIDTH='140' HEIGHT='90'>";
	}
	function zoomout(fic) {
		document.getElementById("photo_box1").innerHTML = "";
	}

<!-- Zoom texte -->
<!-- ========== -->
	<!-- Page musique -->
	<!-- ============ -->
	function zoom_txt(n,txt) {
		document.getElementById("txt_box"+n+"").innerHTML = txt;
	}
	