window.onload = window.onresize = function()
{
	var oCollage = window.document.getElementById("collageCnt");

	if(oCollage)
	{
		var wndWidth = document.body.offsetWidth - 232;

		var child = oCollage.children[0];

		wndWidth = wndWidth > 0 ? wndWidth : 0;

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

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