OpenWindowImage=function(imagePath, width, height)
{
	if (0 == width)
		width = 500;
	if (0 == height)
		height = 400;
	window.open('js/window.php?image=' + imagePath, '_blank', 'directories=0,channelmode=0,location=0,menubar=0,status=0,toolbar=0,titlebar=0,scrollbars=1,resizable=1,width=' + width + ',height=' + height);
}