
//'seguin','ictour27','tour27',200,98,400,195,'Le premier pont suspendu à Tournon <br></a>25/8/1825<br>( A.D.A. Série F1, gravures)','hrtour27')
function affiche_icone(dir,icname,name,icw,ich,imgw,imgh,texte,hrname)
{
var hr='';
if ((hrname==undefined)||(hrname==""))// l'image existe en haute définition
	{}
	else
	{
	hr='hr';
	}
document.write ('<p align="center" style="font-size: 8pt;line-height:normal;">');
if (name !="") // cas où il y a une image plus précise
	{
		document.write('<a href="javascript:appel_fenetre(\''
			+dir
			+'\',\''
			+name
			+'\','
			+imgw
			+','
			+imgh
			+',\''
			+hr
			+'\',\''
			+hrname
			+'\');">');
		document.write ('<img border="0" src="'
			+dir
			+'/'
			+icname
			+'.jpg" width="'
			+icw
			+'"');
		if (ich!="")
			{
			document.write (' height="'+ich+'"');
			};
		document.write ('align="center">');
		document.write ('<br>');
		if (hr=='hr')
			{
			document.write ('<img border="0" align="left" src="loupe3.gif" width="35" height="31">');
			}
			else
			{
			document.write ('<img border="0" align="left" src="loupe2.gif" width="35" height="31">');
			};
		document.write (texte+'</a></p>');
	}
	else // il n'ya qu'une image de type icône, donc pas de zoom
	{	
		document.write ('<img border="0" src="'
			+dir
			+'/'
			+icname
			+'.jpg" width="'
			+icw
			+'"');
		if (ich!="")
			{
			document.write (' height="'+ich+'"');
			};
		document.write (' >');
		document.write ('<br><font color="#0000ff">'+texte+'</font></p>');
	}
}
