﻿function LoadProductDetails(pageID)
{
	var small = GetElement(productIdStart + pageID, "DIV");
	var detailed = GetElement(productExpandedIdStart + pageID, "DIV");
	
	var loadingTrHeight = 75;
	if(small.offsetHeight != null){loadingTrHeight = small.offsetHeight;}
	
	detailed.innerHTML = "<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width:100%;\"><tr><td align=\"center\" style=\"height:" + loadingTrHeight + "px;\"><img src=\"../Images/loading.gif\" style=\"border:0px;\" /></td></tr></table>";
	HideElement(small.id, "DIV");
	ShowElement(detailed.id, "DIV");

    ajaxTarget = detailed;
    ajaxTargetID = detailed.id;

	makeHttpRequest(productExpandedUrl + "?PageID=" + pageID, "PrintExpandedProduct", false);
}

function HideProductDetails(pageID)
{
	ShowElement(productIdStart + pageID, "DIV");
	HideElement(productExpandedIdStart + pageID, "DIV", true);
}