// ****************************************************************
// *** Code Javascript pour la gestion des images des produits	***
// *** Fiche produit - CVOMarket V3.00.00						***
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// *** Version script	1.00.00									***
// *** Date				13/08/2008								***
// ****************************************************************

// ****************************************************
// *** Afficher l'image d'un produit dans une popup ***
// ****************************************************
function dodisplayImageProduct(TLibVar_BoxName,TLibVar_IdProduct){
	var TLibVar_POSTValues = new String();

	// *** Afficher la Popup ***
	doFadeContent(500,600);
	// *** Appeler le script PHP ***
	TLibVar_POSTValues = 'BoxToInclude=doDiplayImageLib';
	TLibVar_POSTValues+= '&IdProduct='+parseInt(TLibVar_IdProduct);
	TLibVar_POSTValues+= '&gonavpage=0';
	// *** Afficher un message d'attente ***
	document.getElementById(TLibVar_BoxName).style.display = "block";
	document.getElementById(TLibVar_BoxName).innerHTML = CVOMVar_MessageWait;
	// *** Appel ajax - enregistrement nouveau client ***
	CVRSAjaxQueryURL('POST','/lib/include/modules/CVRSTBox_ContentFicheProductManagement.php',TLibVar_POSTValues,TLibVar_BoxName);
}

