////Prevents "deep linking" to subpages - returns to main page

if (top == self) self.location.href = "http://www.housingscc.org/";


////Prevents Popup menu when right-clicking on document

peXt = (navigator.userAgent.indexOf("Opera")!=-1 && document.getElementById) ? "op": (navigator.userAgent.indexOf("Konqueror")!=-1 && document.getElementById) ? "ko" : (document.all) ? "ie" : (document.layers) ? "nn" : (!document.all && document.getElementById) ? "mo" : "";
if (peXt != "op"){

document.oncontextmenu = function(){return false}
 if(document.layers) {
    window.captureEvents(Event.MOUSEDOWN);
    window.onmousedown = function(e){
        if(e.target==document)return false;
    }
 }
else {
    document.onmousedown = function(){return false}
}
}