//utility function called by getCookie()function getCookieVal(offset){ var endstr = document.cookie.indexOf(";", offset); if(endstr == -1) { endstr = document.cookie.length; } return decodeURI(document.cookie.substring(offset, endstr));}// primary function to retrieve cookie by namefunctio Read More
posted @ 2012-01-01 17:51 FredTang Views(1432) Comments(0) Diggs(0)