
function newproduit()
{
	temp= document.getElementById('temp').value;
	cat =document.getElementById('listecat').value;
	actif =document.getElementById('actif').value;
	titre =document.getElementById('libelle').value;
	detail =document.getElementById('detail').value;
	image=document.getElementById('image').value;
	prixht =document.getElementById('prix').value;
	prixpromo =document.getElementById('prixpromo').value;
	ligne = 'administration/gestionproduit/newprod.php?ajoutprod=1&cat='+cat+'&actif='+actif+'&titre='+titre+'&detail='+detail+'&image='+image+'&prixht='+prixht+'&prixpromo='+prixpromo;
	ajax_loadContent('affichmenugestionproduit',ligne);
}

function modifprod()
{
	
num = document.getElementById('listeproduit').value;
temp = document.getElementById('temp').value;
ligne='administration/gestionproduit/modifprod.php?num='+num+'&temp='+temp;
ajax_loadContent('affichmenugestionproduit',ligne);
}
function modificationprod()
{
	var num = document.getElementById('num').value;
	var cat = document.getElementById('newcat').value;
	var actif = document.getElementById('newactif').value;
	var titre = document.getElementById('newtitre').value;
	var detail = document.getElementById('newdetail').value;
	var image = document.getElementById('newimage').value;
	var prixht = document.getElementById('newprixht').value;
	var prixpromo = document.getElementById('newprixpromo').value;

ajax_loadContent('affichmenugestionproduit','administration/gestionproduit/modifprod.php?modif=1&num='+num+'&cat='+cat+'&actif='+actif+'&titre='+titre+'&detail='+detail+'&image='+image+'&prixht='+prixht+'&prixpromo='+prixpromo);
}


function supprprod()
{
numero = document.getElementById('listeproduit').value;
temp = document.getElementById('temp').value;
ajax_loadContent('affichmenugestionproduit','administration/gestionproduit/supprprod.php?num='+numero+'&temp='+temp);
}



