﻿		function OpenWin(varSelection, varWid, varLen ){

			varURL="images/" + varSelection + ".jpg";

			var varFeatures = "scrollbars=no,toolbar=no,menubar=no,directories=no,status=no,resizable=yes,height=" + varLen + ",width=" + varWid;
			var newWindow = window.open(varURL, 'MiniWindow', varFeatures);
			newWindow.focus();

			};
		function OpenWinGif(varSelection, varWid, varLen ){

			varURL="images/" + varSelection + ".gif";

			var varFeatures = "scrollbars=no,toolbar=no,menubar=no,directories=no,status=no,resizable=yes,height=" + varLen + ",width=" + varWid;
			var newWindow = window.open(varURL, 'MiniWindow', varFeatures);
			newWindow.focus();

			};


