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

