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("This photo has been added to your cart");
	document.affichePhotos.action=document.affichePhotos.actionPage.value;	
	document.affichePhotos.submit();
}

function ajoutPanierD(idPhoto)
{
	parent.document.affichePhotos.idPhotoPanier.value=idPhoto;
	alert("This photo has been added to your cart");
	parent.document.affichePhotos.action=parent.document.affichePhotos.actionPage.value;	
	parent.document.affichePhotos.submit();
}

function retraitPanier(idPhoto)
{
	document.affichePhotos.idPhotoRetrait.value=idPhoto;
	alert("This photo has been removed to your cart");
	document.affichePhotos.submit();
}

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


