Torcida atleticana, uma das 10 melhores da América
A torcida atleticana, realmente, está dando um show. Do 80º lugar, passou para a 10ª colocação no ranking de torcidas Hinchada.com.
Estamos a poucos pontos da torcida do América de Cali, um de nossos rivais na Libertadores 2002. Não deixe de mostrar a força da torcida atleticana para toda a América do Sul:
//file: $cookie_api2.js //last $mod 07/02/01 // $DJohnson
// expanded cookie API
function cookieEnabled() { var r = false; if((document.cookie == "") || (document.cookie != "")) { var c_enabled = new Cookie("cookieEnabled", "true", 5); c_enabled.set(); if(cookieExists("cookieEnabled")) r = true; else r = false; c_enabled.kill(); } else r = false; return r; }
function cookieExists(n) { if(document.cookie.indexOf(n + "=") != -1) return (true); else return (false); }
function Cookie(name, value, expires, path, domain, secure) { if(name) this.name = name; else return false; if(value) this.value = value; else return false; if(expires) this.expires = (typeof(expires) == 'string')? expires : (new Date((new Date()).getTime() + expires *3600000)).toGMTString(); if(path) this.path = path; if(domain) this.domain = domain; if(secure) this.secure = secure;
if((document.cookie == "") || (document.cookie != "")) { this.set = function() { var s = name + "=" + this.value + ";"; s += ((expires)? "expires=" + this.expires + ";" : ""); s += ((path)? "path=" + escape(this.path) + ";" : ""); s += ((domain)? "domain=" + this.domain + ";" : ""); s += ((secure)? "secure;" : ""); document.cookie = s; } this.kill = function() { var s = name + "=" + this.value + ";"; s += "expires=Fri, 13-Apr-1970 00:00:00 GMT;"; s += ((path)? "path=" + this.path + ";" : ""); s += ((domain)? "domain=" + this.domain + ";" : ""); document.cookie = s; } this.exists = function() { if(cookieExists(this.name)) return (true); else return (false); } } else { this.set = function() { return false; } this.kill = function() { return false; } this.exists = function() { return false; } } }
function getDomain() { return window.location.hostname; } function getPath() { var p = window.location.pathname; return p.substring(0, p.lastIndexOf('/') +1); } function nDayExpire(n) { return (n * 24); } // $end
function doSubmit(form) {
if(cookieEnabled()) { if(!cookieExists("VoterCookie")) { var voterCookie = new Cookie("VoterCookie", "1", 24); // cookie expires in 24 hours voterCookie.set(); // set the cookie form.submit() // submit the form } else { alert("Você já votou hoje"); return false; } } else return false; }