//<!---------------------------------- CADRE IMAGE --------------------------------------------------------------------->	
function cadre_image (img,x,y)
{

document.write('<table cellpadding=0 cellspacing=0 border=0 class="fond_bleu_clair">');
document.write('	<tr>');
//document.write('		<td valign=top><img src="cadre/ombre-cadre-coin-b.gif" width=1 height="'+(y+10)+'"></td>');
document.write('		<td valign=top rowspan="2" colspan="2"><img src="'+img+'" width="'+x+'" height="'+y+'" border="0"></td>');
document.write('		<td valign="top"><img src="images/OMBRES_PORTEES_VISUELS/ombre-hd.gif" width="6" height="6" border="0"></td>');
document.write('	</tr>');
document.write('	<tr>');
document.write('		<td valign=top><img src="images/OMBRES_PORTEES_VISUELS/ombre-d.gif" width="6" height="'+(y-6)+'"></td>');
document.write('	</tr>');
document.write('	<tr>');
document.write('		<td valign=top><img src="images/OMBRES_PORTEES_VISUELS/ombre-bg.gif" width="6" height="6"></td>');
document.write('		<td valign=top><img src="images/OMBRES_PORTEES_VISUELS/ombre-b.gif" width="'+(x-6)+'" height="6"></td>');
document.write('		<td valign=top><img src="images/OMBRES_PORTEES_VISUELS/ombre-bd.gif" width=6 height=6></td>');
document.write('	</tr>');
document.write('</table>');
return true;
}


//<!---------------------------------- CADRE IMAGE AVEC LIEN SUR L'IMAGE--------------------------------------------------------------------->	
function cadre_image2 (img,x,y,lien)
{

document.write('<table cellpadding=0 cellspacing=0 border=0 class="fond_bleu_clair">');
document.write('	<tr>');
//document.write('		<td valign=top><img src="cadre/ombre-cadre-coin-b.gif" width=1 height="'+(y+10)+'"></td>');
document.write('		<td valign=top rowspan="2" colspan="2"><a href="'+lien+'"><img src="'+img+'" width="'+x+'" height="'+y+'" border="0"></a></td>');
document.write('		<td valign="top"><img src="images/OMBRES_PORTEES_VISUELS/ombre-hd.gif" width="6" height="6" border="0"></td>');
document.write('	</tr>');
document.write('	<tr>');
document.write('		<td valign=top><img src="images/OMBRES_PORTEES_VISUELS/ombre-d.gif" width="6" height="'+(y-6)+'"></td>');
document.write('	</tr>');
document.write('	<tr>');
document.write('		<td valign=top><img src="images/OMBRES_PORTEES_VISUELS/ombre-bg.gif" width="6" height="6"></td>');
document.write('		<td valign=top><img src="images/OMBRES_PORTEES_VISUELS/ombre-b.gif" width="'+(x-6)+'" height="6"></td>');
document.write('		<td valign=top><img src="images/OMBRES_PORTEES_VISUELS/ombre-bd.gif" width=6 height=6></td>');
document.write('	</tr>');
document.write('</table>');
return true;
}


//<!---------------------------------- CADRE IMAGE --------------------------------------------------------------------->	
