﻿// JScript File
 var OpenWindow;
 
 function ShowImage(image, imgWidth, imgHeight)
{
	if (OpenWindow)
	{
		OpenWindow.close();
	}
	OpenWindow = window.open(image,'','width=' + imgWidth + ',height=' + imgHeight + ',scrollbars=yes,resizable=yes');
}
