function invocarMinerva(pIdioma) {
	var wWidth = 244;
	var wNavWidthDelta = (!!document.all) ? 8 : 10;	
	var wTopPosition = (!!document.all) ? 110 : 145;
	var wNavHeightDelta = (!!document.all) ? 30 : 0;
	var wHeight;
	
	if( screen.height <= 768 )
	{
		wHeight = Math.round( (screen.height - wTopPosition - wNavHeightDelta)  * 0.95 );
	}
	else
	{
		wHeight = Math.round( (screen.height - wTopPosition - wNavHeightDelta) * 0.75 );
	}
	var wLeftPosition = screen.width - wWidth - wNavWidthDelta;
	
	if (pIdioma == undefined || pIdioma == null) {
		pIdioma = 'ca';
	}
	var wURL = URL_FLOTANT+"?clauCanal=XUjx9cmKhlI.&codIdioma="+pIdioma;
	var windowminervaflotant = window.open(wURL,'' + wWidth + 'x645','width=' + wWidth + ',height='+wHeight+',left='+wLeftPosition+',top='+wTopPosition);
}