
function OpenWin(URL,width,height,nom)
{
	window.open(URL,nom,"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=no");
}

function OpenWin2(URL,width,height,nom)
{
	window.open(URL,nom,"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=yes");
}

function ProductAlert(Prod_ID,racine){
	
	theQueryString = window.location.search;
	if (theQueryString == "")
		theQueryString += '?prodid=' + Prod_ID;
	else
		theQueryString += '&prodid=' + Prod_ID;
	
	var theURL
		theURL = racine + '/achat/produit_alertes.php' + theQueryString
		
		window.open(theURL,'new','height=310,width=300,resizable=no,menubar=0')
}	

function QteStockAlerte(quantite,stock){

if (quantite > stock) {

alert("Attention, la quantité demandée est supérieure au stock disponible.\nStock disponilble. : "+ stock +".");

window.location.reload();

}

}

function CtrlCp(saisie, texte, champ)
{

that = document.entryform [champ];

 if(isNaN(saisie) == true)
 {
 	
	alert("Merci d'insérer des chiffres dans le champ Code Postal.");
  
	that.value = "";
 
 	return false;
 
 	}
 
 else if (that.value.length >5)
 
 		{
		
		alert("Merci d'indiquer les 2 chiffres de votre département ou les 5 chiffres de votre code postal.");
		
		that.value = "";
		
		return false;
		
		}
 
 return true;

}

