function acGetCookie(cn) { get_data = document.cookie; cv = new Array(); gd = get_data.split(";"); var i; for (i = 0; i < gd.length; i++) { var a = gd[i].split("="); a[0] = a[0].replace(" ",""); cv[a[0]] = a[1]; } if (cv[cn]) return cv[cn]; else return "";}function acSetCookie(cn,val) { document.cookie = cn + "=" + val +"; expires=Thu, 1-Jan-2030 00:00:00 GMT;";}var now = new Date();var x = Math.round(Math.random() * now.getTime());var id;if(!navigator.cookieEnabled){ id = 'N/A';} else { id = acGetCookie('ac'); if (id == "") { id = 'N/A'; }}var js = ''; var __proto = window.location.protocol; if (__proto == "http:" || __proto == "https:") { document.write(js); }