
<!-- Hide from old browsers
document.onmousedown = checkClick
if (document.layers){
        document.captureEvents(Event.MOUSEDOWN)
}
function checkClick(ev) {
        if (navigator.appName == "Netscape"){
                if (ev.which != 1) {
                        alert("Copyright 2004-2005 PrivateLoanMaker.com - Click OK to close this window")   // You can delete this line if you want
                        return false
                }       
        }
        else{
                if (event.button != 1){
                        alert("Copyright 2004-2005 PrivateLoanMaker.com - Click OK to close this window")   // You can delete this line if you want
                        return false
        }
}}
// -->



//Disable select-text script (IE4+, NS6+)- By Andy Scott
//Exclusive permission granted to Dynamic Drive to feature script
//Visit http://www.dynamicdrive.com for this script

function disableselect(e){
return false
}

function reEnable(){
return true
}

//if IE4+
document.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
