var sharePriceStatus = "setupImage"
var timeoutInterval = 60000;
var sharePriceImageSource = "http://clients.weblink.com.au/clients/norfolk/price_img.asp?"
var sharePriceImageAlt = "Share Price - Please wait or refresh if it is taking so long"
var sharePriceRefreshImageSource = "RefreshingSharePriceImage.jpg"
var sharePriceRefreshImageAlt = "Refreshing Share Price - Please wait"

function refreshShareInfoImages()
{ 
	window.status = "Updating Share Price ...";
	priceImage = document.getElementById("SharePriceImage");
	if (priceImage != null)
	{
		now = new Date();
		priceImage.setAttribute("src", sharePriceImageSource + now.getTime());
		priceImage.setAttribute("alt", sharePriceImageAlt);

		window.status = "Done";
	}
	else
	{
		window.status = "Error in Updating Share Price. No such ID found.";
	}
	setTimeout("refreshShareInfoImages()", timeoutInterval);
}
setTimeout("refreshShareInfoImages()", timeoutInterval);

