<!-- http://www.entiretutorial.com/tutorials/javascript/check-javascript-cookie-support-in--browser.aspx-->
function checkcookiesupport() 
{
    var status;
    if(navigator.cookieEnabled)
    {
        status=true;
    }
    else
    {
        status=false;
    }
    if (typeof navigator.cookieEnabled=="undefined" && !status){
        document.cookie="wazzup"
            if(document.cookie.indexOf("wazzup")!=-1)
            {
                status=true;
            }
            else
            {
                status=false;
            }
    }
    return status;
}
