function fetchPrice(elementID,productID,width)
	{
	document.getElementById(elementID).innerHTML = '<span class=live_price_'+ width +'>Fetching Price</span>';

	var http;
	if(navigator.appName == "Microsoft Internet Explorer")
		http = new ActiveXObject("Microsoft.XMLHTTP");
	else
		http = new XMLHttpRequest();
	http.open('GET', '/blog/PriceCompare/getTag.asp?ID=' + productID + '&width='+width, true);
	http.onreadystatechange=function()
		{
		if(http.readyState == 4)
			{
			document.getElementById(elementID).innerHTML = http.responseText;
			}
		}
	http.send(null);
	}

