function ProductAlert(Prod_ID,C_ID,T_ID,racine){		theQueryString = window.location.search;	if (theQueryString == "")		theQueryString += '?prodid=' + Prod_ID;	else		theQueryString += '&prodid=' + Prod_ID;		  theQueryString += '&cid=' + C_ID + '&tid=' + T_ID;	var theURL		theURL = racine + '/achat/stock_alertes.php' + theQueryString				window.open(theURL,'new','height=480,width=490,resizable=no,menubar=0')}	function ProductInfo(Prod_ID,racine){		theQueryString = window.location.search;	if (theQueryString == "")		theQueryString += '?prodid=' + Prod_ID;	else		theQueryString += '&prodid=' + Prod_ID;		var theURL		theURL = racine + '/achat/stock_info.php' + theQueryString				window.open(theURL,'new','height=580,width=580,resizable=no,menubar=0,scrollbars=yes')}	