function affiche(nb)
{
	document.affichePhotos.nbPhotos.value=nb;
	document.affichePhotos.Spage.value="";
	document.affichePhotos.action=document.affichePhotos.actionPage.value;
	document.affichePhotos.submit();
}

function recherche(theme)
{
	parent.document.affichePhotos.nbPhotos.value="";
	parent.document.affichePhotos.navPage.value="";
	parent.document.affichePhotos.Spage.value="";
	parent.document.affichePhotos.idS.value="";
	parent.document.affichePhotos.idT.value="";
	parent.document.affichePhotos.idU.value="";	
	parent.document.affichePhotos.chpRech3.value=theme;
	parent.document.affichePhotos.action=parent.document.affichePhotos.actionRech.value;
	parent.document.affichePhotos.submit();
}

function ajoutPanier(idPhoto)
{
	document.affichePhotos.idPhotoPanier.value=idPhoto;
	alert("Cette photographie a été ajoutée à votre panier");
	document.affichePhotos.action=document.affichePhotos.actionPage.value;	
	document.affichePhotos.submit();
}

function ajoutPanierD(idPhoto)
{
	parent.document.affichePhotos.idPhotoPanier.value=idPhoto;
	alert("Cette photographie a été ajoutée à votre panier");
	parent.document.affichePhotos.action=parent.document.affichePhotos.actionPage.value;	
	parent.document.affichePhotos.submit();
}

function retraitPanier(idPhoto)
{
	document.affichePhotos.idPhotoRetrait.value=idPhoto;
	alert("Cette photographie a été retirée de votre panier");
	document.affichePhotos.submit();
}

function changePage(symb)
{
	document.affichePhotos.navPage.value=symb;
	document.affichePhotos.action=document.affichePhotos.actionPage.value;	
	document.affichePhotos.submit();
}


