
function loadGoodsBanner(bannerId, imageNumber)
{
	window.frames['goods_banner_frame_' + bannerId].location.href=('/banners/goods/load/' + bannerId + '/?image=' + imageNumber);

	//document.location.hash = '#imageNumber=' + imageNumber;

	if (imageNumber > 1)
	{
		document.location.hash = '#imageNumber=' + imageNumber;
	}
	else if (document.location.hash.length > 0)
	{
		document.location.hash = '#';
	}

	return false;
}


function getGoodsBannerImageNumber()
{
	var str = document.location.hash;
	var found = str.match(/\#imageNumber=(\d{1,3})/i);

	if (found)
	{
		return found[1] ? found[1] : 1;
	}
	else
	{
		return 1;
	}
}


function fitBannerWindow(width, heigth)
{
	window.moveTo(80, 80);
	window.resizeTo(width + 300, heigth + 190);
}

