<!-- 
function popEnrich(docsrc) {

var docwidth = 500, docheight = 400, docleft = ((screen.width/2) - 250), doctop = ((screen.height/2) - 200);
	if (window.win && window.win.open && !window.win.closed){
		win.focus();
	}
	else
	{
	win = window.open(docsrc, 'Enrichment', 'toolbars=no,scrollbars=yes,location=no,statusbars=no,menubars=no,resizable=no,width=' + docwidth + ',height=' + docheight + ',left=' + docleft + ',top=' + doctop);
	}
}

function popRecipe(docsrc) {

var docwidth = 650, docheight = 500, docleft = ((screen.width/2) - 325), doctop = ((screen.height/2) - 250);
	if (window.winR && window.winR.open && !window.winR.closed){
		winR.focus();
	}
	else
	{
	winR = window.open(docsrc, 'Recipe', 'toolbars=no,scrollbars=yes,location=no,statusbars=no,menubars=no,resizable=no,width=' + docwidth + ',height=' + docheight + ',left=' + docleft + ',top=' + doctop);
	}
}
// -->
