<!--
function info(texte) {
if ((texte=="")||(texte==null)) {
window.status="Ste Penn'Ty Bio";
} else {
window.status=texte;
}
}
        // buyItem -ajoute un produit dans le panier
        function buyItem(newItem, newPrice, newTva, newRef, newQuantity) {
window.alert(document.domain);  

		// date
	   var expdate = new Date();
        expdate.setTime(expdate.getTime() +  (24*  60 * 1000 * 1)); 



                if (newQuantity <= 0) {
                        rc = alert('Quantit&eacute; incorrecte');
                } else {
                        if (confirm('Ajouter '+newQuantity+'  '+newItem+' dans le panier')) {
                                index = document.cookie.indexOf("TheBasket");
                                countbegin = (document.cookie.indexOf("=", index) + 1);
                                countend = document.cookie.indexOf(";", index);
                                if (countend == -1) {
                                        countend = document.cookie.length;
                                }
                                document.cookie="TheBasket="+document.cookie.substring(countbegin, countend)+"["+newItem+"|"+newPrice+"|"+newTva+"|"+newRef+"|"+newQuantity+"]";
   
                   }
                }
        }
function voirtab()
{
FenPop=window.open('tableau.htm','popup','width=650,height=530,toolbar=no,scrollbars=yes,statusbar=no,titlebar=no,menubar=yes,left=15,top=15,resizable=no,personalbar=no,locationbar=no');
}
// -->
