This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
function AnonNum(min, max) { | |
return Math.floor(Math.random() * (max - min)) + min; | |
} | |
function getNameFromCookie() { | |
var cookie = document.cookie; | |
try { | |
var match = cookie.match(/id\.chatango\.com=(.*?)(;|$)/); | |
if (match && match[1]) { |