function strRetCookie(strNome)
{
return LumisPortal.getCookie(strNome)
/*
var strNomeEQ = strNome + "=";
var astrCookie = document.cookie.split(';');
for (var i = 0; i < astrCookie.length; i++)
	{
	var strCookie = astrCookie[i];
	while (strCookie.charAt(0) == ' ')
		strCookie = strCookie.substring(1, strCookie.length);
	if (strCookie.indexOf(strNomeEQ) == 0)
		return strCookie.substring(strNomeEQ.length, strCookie.length);
	}
return null;
*/
}

//document.write("<br>lumUserName="  + strRetCookie("lumUserName"));
//document.write("<br>lumUserLogin=" + strRetCookie("lumUserLogin"));
//document.write("<br>document.cookie=" + document.cookie);

