function SetCookie(cookieName,cookieValue,nDays) {
    var today = new Date();
    var expire = new Date();
    if (nDays==null || nDays==0) nDays=1;
    expire.setTime(today.getTime() + 3600000*24*nDays);
    document.cookie = cookieName+"="+escape(cookieValue) + ";expires="+expire.toGMTString();
}
function ReadCookie(cookieName) {
    var theCookie=""+document.cookie;
    var ind=theCookie.indexOf(cookieName);
    if (ind==-1 || cookieName=="") return ""; 
    var ind1=theCookie.indexOf(';',ind);
    if (ind1==-1) ind1=theCookie.length; 
    return unescape(theCookie.substring(ind+cookieName.length+1,ind1));
}
function customsemaja2load(){
    if (navigator.standalone) {
        var acceptedCookie = ReadCookie("speedcameraforsa");
        if (acceptedCookie != "2") {
            alert('The cameras listed within this application are provided by the SA Police website. \n\nsemaja2.net does not support any unlawful activities such as using your mobile while driving and we do NOT support any form of speeding on the public road system. \n\nFor more details:\nhttp://semaja2.net/');
            SetCookie("speedcameraforsa","2",30)
        }
    } else {
        alert('The cameras listed within this application are provided by the SA Police website. \n\nsemaja2.net does not support any unlawful activities such as using your mobile while driving and we do NOT support any form of speeding on the public road system. \n\nFor more details:\nhttp://semaja2.net/');
    }
}
