function ouvrelien(lien){
window.open(lien,'_blank','width=500,height=500');
}
function writedivlien(qui,texte)
{

	document.getElementById(qui).innerHTML = texte;
}
function voirphotolien(lien,titre)
{
	var lien;
	//alert(titre);
	voir('nom_photo');
	if(titre=="") titre='';
	writedivlien('nom_photo','<center><a href="#"  onclick="cache(\'nom_photo\')" ><img border=0 src="'+lien+'" ></a><br>'+titre+'</center>');
	
}


function ouvre(photo,larg,haut)
{
	var lien;
	lien="photo.php?photo="+photo+"&w="+larg+"&h="+haut;
	window.open(lien,"_blank","width="+larg+",height="+haut);
}
function ouvrephoto(lien,larg,haut)
{
	var lien;
	
	window.open(lien,"_blank","width="+larg+",height="+haut+',resizable=yes,scrollbars=yes');
}
function voir(qui)
{
 document.getElementById(qui).style.display='block';
 
}
function voir2(qui,lien)
{
 document.getElementById(qui).style.display='block';
 window.lafiche.location.href=lien;
 //window.lafiche.location.href="resultats.php?client_resultats_ID="+lien;
 
}
function cache(qui)
{
 document.getElementById(qui).style.display='none';
}