function FocusText(BoxName)
{
	if (BoxName.value == BoxName.defaultValue)
	{
		BoxName.value = '';
	}
}
function BlurText(BoxName)
{
	if (BoxName.value == '')
	{
		BoxName.value = BoxName.defaultValue;
	}
}

function afficheVignette(NumeroDia,Titreimage)
{
	document.write('<A HREF="javascript:afficheMaxi(\''+NumeroDia+'\',\''+Titreimage+'\')"><IMG SRC="/diaporama/miniatures/dia'+NumeroDia+'.jpg" width=100 height=66 BORDER=1 hspace=5 vspace=5 ALT="'+Titreimage+'" class="photo"></A>');
}
function afficheMaxi(NumeroDia,Titre)
{
	i1 = new Image;
	i1.src = NumeroDia;
	html = '<HTML><HEAD><TITLE>'+Titre+'</TITLE><link href="/_css/site.css" rel="stylesheet" type="text/css"></HEAD><BODY bgcolor=#999999 background="/img/fond_chargement.gif" LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0"><table border="0" cellspacing="1" cellpadding="0" align="center"><tr><td class=titreb align=right><a class=lienc HREF="javascript:window.close();"><IMG alt="Fermer la fenêtre" SRC="/diaporama/agrandissements/dia'+NumeroDia+'.jpg"  border="1" class="photo" NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+15,document.imageTest.height+46)"><br>Fermer la fen&ecirc;tre ><</a></td></tr></table></BODY></HTML>';
	popupImage = window.open('','photo','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,top=20,left=20');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
	popupImage.focus();
}

function agrandissement(chemin,Titre)
{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HEAD><TITLE>'+Titre+'</TITLE><link href="/_css/site.css" rel="stylesheet" type="text/css"></HEAD><BODY bgcolor=#999999 background="/img/fond_chargement.gif" LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0"><table border="0" cellspacing="1" cellpadding="0" align="center"><tr><td class=titreb align=right><a class=lienc HREF="javascript:window.close();"><IMG alt="Fermer la fenêtre" SRC="'+chemin+'"  border="1" class="photo" NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+15,document.imageTest.height+46)"><br>Fermer la fen&ecirc;tre ><</a></td></tr></table></BODY></HTML>';
	popupImage = window.open('','photo','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,top=20,left=20');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	popupImage.focus();
}