function openWin(strImgUrl, strWidth, strHeight)
{
	var strProperties = "width=" + strWidth + "px, height=" + strHeight + "px, toolbar=0, resizable=1, scrollbars=yes";

	window.open(strImgUrl, 'Cata', strProperties);
}