function addProductX(productUrl, delay) {

	var addToCartLink = productUrl + "&Redirect=" + escape(self.location);
	location = addToCartLink;
	return;
	//top.location = productUrl;
	
	var offer_frame = document.getElementById('offer_frame');
	
	if(offer_frame)
	{
		offer_frame.src = productUrl;
		self.location = self.location;
		return;
		window.setTimeout("self.location=self.location;", delay);
	}
	else
	{
		alert("Unable to locate document element 'offer_frame'.");
	}
}
