function PopImage(strPath)
{
	window.open('/Image.aspx?P=' + strPath,'', 'resizable=0,scrollbars=0');
}

function resizeWindow(objImage, intPaddingBottom)
{
	intWidth  = objImage.width;
	intHeight = objImage.height;

	window.resizeTo(intWidth + 50, intHeight + 120 + intPaddingBottom);
}
