function foot(left) {	if (document.layers)		document.write('<LAYER TOP=120 LEFT=' + left + ' WIDTH=135 HEIGHT=540 BGCOLOR=#CCCCFF>');	else		document.write('<SPAN STYLE="position:absolute; top: 120px; left: ' + left + 'px; width: 135px; height: 540px; background-color: #CCCCFF">');	if (is_nav && (is_major <= 4)) {		if (is_win) taille='1'; else taille='2';		document.write('<P><FONT FACE="Textile, Comic Sans MS, Arial, Helvetica, Geneva" SIZE=' + taille + '>Ammonites du Cr&eacute;tac&eacute; sup&eacute;rieur de France</FONT></P>');		document.write('<P><FONT FACE="Century Gothic, Arial, Comic Sans MS, Helvetica, Geneva" SIZE=' + taille + '>');	} else {		document.write('<P CLASS="foot">Ammonites du Cr&eacute;tac&eacute; sup&eacute;rieur de France</P>');		document.write('<P CLASS="liens">');	}	document.write('<A HREF="expo-cretasup-01.htm">[Intro]</A><BR><BR>');	document.write('<A HREF="expo-cretasup-02.htm">[G&eacute;n&eacute;ralit&eacute;s sur les ammonites]</A><BR><BR>');	document.write('<A HREF="expo-cretasup-03.htm">[&Eacute;volution et mode de vie]</A><BR><BR>');	document.write('<A HREF="expo-cretasup-04.htm">[Distribution spatiale]</A><BR><BR>');	document.write('<A HREF="expo-cretasup-05.htm">[Le Cr&eacute;tac&eacute; sup&eacute;rieur]</A><BR><BR>');	document.write('<A HREF="expo-cretasup-06.htm">[Principaux affleurements]</A><BR><BR>');	document.write('<A HREF="expo-cretasup-07.htm">[Familles du C&eacute;nomanien et du Turonien]</A><BR><BR>');	document.write('<A HREF="expo-cretasup-08.htm">[Familles du Coniacien et du Santonien]</A><BR><BR>');	document.write('<A HREF="expo-cretasup-09.htm">[Familles du Campanien et du Maastrichtien]</A><BR><BR>');	document.write('<A HREF="expo-cretasup-10.htm">[&Eacute;volution quantitative des familles]</A><BR><BR>');	document.write('<A HREF="expo-cretasup-11.htm">[Diminution de la diversit&eacute;]</A><BR><BR>');	document.write('<A HREF="expo-cretasup-12.htm">[Extinction]</A><BR><BR>');	if (is_nav && (is_major <= 4))		// Netscape < 6 ne supporte pas <IFRAME>, on dˇroute vers une pop-up avec <FRAMESET>		document.write('<A HREF=javascript:openPopUp("expo-cretasup-894NS",620,530)>[La visite en photos (popup) !]</A><BR><BR>');	else		// Fonctionnement normal pour les autres navigateurs		document.write('<A HREF="expo-cretasup-89.htm">[La visite en photos !]</A><BR><BR>');	document.write('<A HREF="expo-cretasup-99.htm">[Remerciements, bibliographie et liens]</A><BR><BR>');	document.write('<A HREF="index.htm">[Ammonites et autres spirales]</A><BR><BR>');	document.write('Herv&eacute; Ch&acirc;telier, 2002');	if (is_nav && (is_major <= 4)) document.write('</FONT></P>'); else document.write('</P>');

	if (document.layers) document.write('</LAYER>'); else document.write('</SPAN>');}function put_image(name, top, left, width, height, alt, link) {	if (document.layers) {		document.write('<LAYER TOP=' + top + ' LEFT=' + left + '>');		if (link != '') document.write('<A HREF="' + link + '">');		document.write('<IMG TITLE="' + alt + '" SRC="Images/' + name + '" WIDTH='  + width + ' HEIGHT=' + height + ' BORDER=0 ALT="' + alt + '">');		if (link != '') document.write('</A>');		document.write('</LAYER>');	} else {		document.write('<SPAN STYLE="position: absolute; top: ' + top + 'px; left: ' + left + 'px">') ;		if (link != '') document.write('<A HREF="' + link + '">');		document.write('<IMG TITLE="' + alt + '" SRC="Images/' + name + '" WIDTH='  + width + ' HEIGHT=' + height + ' BORDER=0 ALT="' + alt + '">');		if (link != '') document.write('</A>');		document.write('</SPAN>');	}}// Placer un rectangle avec un fond et/ou un texte et/ou un lien// Pas optimise, mais c'est pour que ca marche avec le maximum de browsers/OS// Inutile de dire que les verrues sont pour Winwinfunction textangle(top, left, height, width, bgcolor, text) {	// on commence par le fond	if (bgcolor != '')		// on a forcement width et height renseignes		if (document.layers)			document.write('<LAYER TOP=' + top + ' LEFT=' + left + ' WIDTH=' + width + ' HEIGHT=' + height + ' BGCOLOR=' + bgcolor + '></LAYER>');		else {			document.write('<SPAN STYLE="position: absolute; top: ' + top + 'px; left: ' + left + 'px;');			if (is_ie && is_win) {				// verrue pour IE sous Winwin				document.write('">');				document.write('<IMG SRC="Images/'+ bgcolor +'.GIF" WIDTH=' + width + ' HEIGHT=' + height +'>');			}			else {				document.write(' width: ' + width + 'px;' + ' height: ' + height + 'px;' + ' background-color: ' + bgcolor + '">');			}			document.write('</SPAN>');		}	// et on s'occupe du texte apres	// c'est a cause de NS sous... Winwin, mais on applique a tous	if (text != '') {		if (document.layers) {			document.write('<LAYER TOP=' + top + ' LEFT=' + left);			if (width != '') document.write(' WIDTH=' + width);			if (height != '') document.write(' HEIGHT=' + height);			document.write('>');		} else {			document.write('<SPAN STYLE="position: absolute; top: ' + top + 'px; left: ' + left + 'px;');			if (width != '') document.write(' width: ' + width + 'px;');			if (height != '') document.write(' height: ' + height + 'px;');			document.write('">');		}		if (is_nav && (is_major <= 4)) {			if (is_win) taille='1'; else taille='2';			document.write('<P><FONT FACE="Century Gothic, Arial, Comic Sans MS, Helvetica, Geneva" SIZE=' + taille + '>' + text + '</FONT></P>');		} else			document.write('<P CLASS="liens">' + text + '</P>');		if (document.layers) document.write('</LAYER>'); else document.write('</SPAN>');	}}
