function newphoto()
{
	temp= document.getElementById('temp').value;
	libelle=document.getElementById('libelle').value;
	nom=document.getElementById('nom').value;
	listeproduit=document.getElementById('listeproduit').value;

	ligne = 'administration/gestionphoto/newphoto.php?ajoutphoto=1&libelle='+libelle+'&nom='+nom+'&listeproduit='+listeproduit+'&temp='+temp;
	ajax_loadContent('affichmenugestionphoto',ligne);
}

function supprphoto()
{
num = document.getElementById('num').value;
temp = document.getElementById('temp').value;
ajax_loadContent('affichmenugestionphoto','administration/gestionphoto/supprphoto.php?num='+num+'&temp='+temp);
}

function voirphoto()
{
num = document.getElementById('num').value;
temp = document.getElementById('temp').value;
ajax_loadContent('affichmenugestionphoto','administration/gestionphoto/supprphoto.php?affich=1&num='+num+'&temp='+temp);
}

function envoi()
{
photo = document.getElementById('photo').value;
alert(photo);
}