I was trying out the examples from w3schools. I was wondering if is possible to extract the lastvisit data separately from username.
function checkCookie()
{
var username=getCookie("username");
if (username!=null && username!="")
{
alert(unescape(document.cookie.split(";")));
}