function ShowImage(path, x, y)
{
	if (window.showModalDialog)
	{
		window.showModalDialog(path, 0, 'dialogWidth:' + x + 'px; dialogHeight:' + y + 'px; status: No;');
	}
	else
	{
		window.open(path);
	}
}
