var rq_prodcutImageList;
var divProductList;
function showProductImageList(storeId, pageNo)
{
	var url = "/store/showStoreProductImagePageAction.do?storeId=" + storeId + "&pageNo=" + pageNo;
	divProductList = gid("productImageList");
	rq_prodcutImageList = new RemoteRequest(url, setProductImageListContent);
}

function setProductImageListContent() 
{
	if (document.getElementById("product_hackbox"))
	{
		document.getElementById("product_hackbox").innerHTML = "<img src=\"/images/common/icon/icon_loading.gif\" />" ;
	}
	try 
	{
  		if(rq_prodcutImageList.page_currentxmlhttpobject.readyState == 4)
  		{
    		divProductList.innerHTML = rq_prodcutImageList.page_currentxmlhttpobject.responseText;
		}
	}catch(e) {}
}


function showStoreDetailProductImageList(storeId)
{
	var url = "/store/showStoreProductImagePageAction.do?storeId=" + storeId
	divProductList = gid("productImageList");
	rq_prodcutImageList = new RemoteRequest(url, setStoreDetailProductImageListContent);
}

function setStoreDetailProductImageListContent() 
{
	try 
	{
  		if(rq_prodcutImageList.page_currentxmlhttpobject.readyState == 4)
  		{
    		divProductList.innerHTML = rq_prodcutImageList.page_currentxmlhttpobject.responseText;
		}
	}catch(e) {}
}