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