﻿//Showcase update timer

function ReloadShowcase()
{
	var pl = new SOAPClientParameters();
	SOAPClient.invoke(wsUrl, "GetShowcaseTableMarkup", pl, true, ReloadShowcase_callBack);
}

function ReloadShowcase_callBack(r)
{
	var sHTML = r;
	document.getElementById("ctl00_ContentPlaceHolder1_pnlShowCase").innerHTML = sHTML;
}

setInterval("ReloadShowcase();", 15000);