<!--
// declared outside of the scope of the function so it will persist on the page:
var newWindow;
function featureWin(height, width, url)
{
//   if (newWindow && !newWindow.closed) {
//      newWindow.close()
//   }
	closeFeatureWin();
	var scroll = url.indexOf('standard_ink') > -1 ? 1 : 0;
	newWindow = window.open(url, null, 'height=' + height + 
	
		',width=' + width + ',status=0,toolbar=0,menubar=0,location=0,scrollbars=' + scroll);
}
function closeFeatureWin()
{   
	if (newWindow && !newWindow.closed) 
	{
		newWindow.close()
    }
}

//-->