function PopUp( chemin )
{
	html  = '<html>\n';
	html += '<head>\n';
	html += '<title>Le Gîte de Combottes</title>\n';
	html += '</head>\n';
	html += '<body>\n';
	html += '<center>\n';
	html += '<img src="' + chemin + '" border="0" name="Image" alt="" onload="window.resizeTo( document.Image.width + 36, document.Image.height + 70)" />\n';
	html += '</center>\n';
	html += '</body>\n'
	html += '</html>\n';
	popupImage = window.open( '', '_blank', 'toolbar=0, location=0, directories=0, menuBar=0, scrollbars=0, resizable=1' );
	popupImage.document.open( );
	popupImage.document.write( html );
	popupImage.document.close( );
}

function Fermer( )
{
	document.getElementById( 'prev_news' ).style.visibility = 'hidden';
}

function Valider_Img( val )
{
	document.forms['formaenews'].delete_ok.value = val;
	document.forms['formaenews'].submit( );
}
