<!--

/* Detection Functions ----------------------------------------------------------------------------- */

//Break out of frames
if (top.location != self.location ) top.location.href = self.location;
		
//Check cookies enabled
if(!checkCookies()) window.location = '/cookies.php';

function checkCookies() {
    var check;
    
    cookieSet('detect', '1');
    check = cookieCheck('detect');
    cookieKill('detect');   
    return (check?true:false);
}

function cookieSet(name, value, expire) {   
    document.cookie = name + "=" + escape(value) + 
        ((expire == null) ? "" : ("; expires=" + expire.toGMTString()));
}

function cookieCheck(name) {   
    var search = name + "=";
    if (document.cookie.length > 0) { 
        offset = document.cookie.indexOf(search);
        if (offset != -1) { 
            offset += search.length;
            end = document.cookie.indexOf(";", offset);
            if (end == -1) end = document.cookie.length;         
                
            return unescape(document.cookie.substring(offset, end));
        }
    }
    return null;
}

function cookieKill(name) {
    cookieSet(name,'',new Date(0));
}

//-->