var _resize = function()
{
	var oCollage = document.getElementById("collageCnt");

	if(oCollage)
	{
		var wndWidth = document.body.offsetWidth - (window.moz ? 202 : 232);

		var child = oCollage.children[0];

		wndWidth = wndWidth > 0 ? wndWidth : 0;

		oCollage.style.width = Math.min(wndWidth, child.offsetWidth) + "px";
	}
}

window.onload = window.onresize = _resize;

function popup(cat, pos)
{
	window.open("gallery_viewer.php?category=" + cat + "&start=" + pos, null, "width=" + POPUP_WIDTH + ", height=" + (Number(POPUP_HEIGHT) + 92) + "").focus();
}