Hehe como faço p/ reverter isso????
<script language="JavaScript" type="text/JavaScript">
auxReload = '';
xmm = '';
xss = '';
hh='';
mm='';
ss='';
function Get_Cookie(name)
{
var start = document.cookie.indexOf(name+"=");
var len = start+name.length+1;
if ((!start) && (name != document.cookie.substring(0,name.length))) return null;
if (start == -1) return null;
var end = document.cookie.indexOf(";",len);
if (end == -1) end = document.cookie.length;
return unescape(document.cookie.substring(len,end));
}
function Set_Cookie(name,value)
{
var cookieString = name + "=" +escape(value);
document.cookie = cookieString;
}
string_cookie = Get_Cookie('tempofalta');
var mm = string_cookie
var ss = 00;
function relogio()
{
if (ss <= 00)
{
ss = 60;
mm = mm - 1;
if (mm <= 00)
{
mm = 60;
hh = hh - 1;
if (hh >= 24)
{
hh = 00;
}
}
}
ss = ss - 1;
if (hh <= 9)
{
xhh = "0" + hh;
}
else
{
xhh = hh;
}
if (mm <= 9)
{
xmm = "0" + mm;
}
else
{
xmm = mm;
}
if (ss <= 9)
{
xss = "0" + ss;
}
else
{
xss = ss;
}
Set_Cookie('tempofalta',xmm);
lrelogio = setTimeout("relogio()", 1000);
document.all("span_relogio").innerHTML = "Tempo restante da sessão: " + "<b>" + xmm + ":" + xss + "</b>";
}
</script>










