
var cname = 'UserNameCaeu' + "=";
var dc = document.cookie;

if (dc.length > 0) {
	begin = dc.indexOf('UserNameCaeu');
	if (begin != -1)
	{
		begin += cname.length;
		end = dc.indexOf(";", begin);
		if (end == -1) end = dc.length;
			document.write('Hola: <a class=whitelink href=http://servicios.eluniverso.com/registroUser/Default.aspx?Action=Modificar>' + dc.substring(begin, end) + '</a> | <a class=whitelink href=javascript:EliminarCookie()> Salir</a>');
	}
	else
	{
		document.write('<a class=whitelink href=http://servicios.eluniverso.com/registroUser/Default.aspx?Action=LogIn>Entrar</a> | <a class=whitelink href=http://servicios.eluniverso.com/registroUser/Default.aspx?Action=Register>Registrese</a>')
	}
}

function EliminarCookie()	
{
	document.cookie = 'UserNameCaeu' + "=" + ";domain=.eluniverso.com;expires=Thu, 01-Jan-1970 00:00:01 GMT";
	document.location.href = "http://www.eluniverso.com";
}		