// Librairie de fonctions pour le site Chats / Maine Coon
// (c) F. Aeberhard 2003, 2006, 2008

// =============================== Photos ================================
function MINI_PHOTO_V(NOM, F)
{// MINI_PHOTO_V() crée la miniphoto Verticale NOM avec le lien
// href="#" pour mettre le curseur en forme de main, return = false pour ne pas suivre ce lien fictif !
	document.write( 
	'<a href="#">'+
	'<img src="../images_chats/'+NOM+'.jpg" width="'+480/F+'" height="'+640/F+'" onclick="'+"PHOTO_V('"+NOM+"');return false"+
	'" title="(c) Maine Coon de Crest d&quot;El"></a>' ) ;
}// MINI_PHOTO_V()

function PHOTO_V(NOM)
{// PHOTO_V() affiche la photo Verticale agrandie dans une fenêtre séparée
	window.open('../images_chats/'+NOM+'.jpg',
		'PhotoAS',
		'height=660,width=500');
}// PHOTO_V()

function MINI_PHOTO_H(NOM, F)
{// MINI_PHOTO_H() crée la miniphoto Horizontale NOM avec le lien
// href="#" pour mettre le curseur en forme de main, return = false pour ne pas suivre ce lien fictif !
	document.write( 
	'<a href="#">'+
	'<img src="../images_chats/'+NOM+'.jpg" width="'+640/F+'" height="'+480/F+'" onclick="'+"PHOTO_H('"+NOM+"');return false"+
	'" title="(c) Maine Coon de Crest d&quot;El"></a>' ) ;
}// MINI_PHOTO_H()

function PHOTO_H(NOM)
{// PHOTO(_H) affiche la photo Horizontale agrandie dans une fenêtre séparée
	window.open('../images_chats/'+NOM+'.jpg',
		'PhotoAS',
		'height=500,width=660');
}// PHOTO_H()

// =============================================================================

function DISP_MAIL(NOM, SITE)
{
	document.write( '<A HREF="mailto:'+NOM+'@'+SITE+'.ch"><font color="#000000"><strong>'+NOM+'@'+SITE+'.ch</strong></font></A>' );
}