function GravaCookie (sNome, sValor) {
	document.cookie = sNome + '=' + sValor;
}

function LeCookie (sNome) {
	var sValor = null;
	var sCookie = document.cookie;
	var nInicio = sCookie.indexOf(sNome);
	if (nInicio != -1) {
		sValor = unescape( sCookie.substring( sCookie.indexOf('=', nInicio) + 1, sCookie.length ) );
	}
	return sValor;
}

