function SubmitAndGo(form, Action, Id)
{
	//alert(form + ' - ' + Action + ' - ' + Id);
	
	if(Action=='D')
		if(!confirm('Confirmer la suppression?'))
			return;
	
	document.getElementById('Action').value=Action;
	document.getElementById('Id').value=Id;
	document.getElementById(form).submit();
}

function ShowImg(IdAlbum, NomFichier)
{
	window.open('/pages/showimg.php?IdAlbum='+IdAlbum+'&photo='+NomFichier,'showimg','menubar=no, status=no, scrollbars=yes');
}