						//STOP USERS FROM STUMBLING ONTO ISOLATED PAGES - BREAK INTO FRAMES

frameloc="frameset.htm"
thisloc = window.parent.location.href;
if(thisloc.indexOf(frameloc)==-1){self.location=frameloc}








function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus

// DISABLE RIGHT CLICK
function clickIE() {if (document.all) {alert(message);return false;}}

function clickNS(e) {if 

(document.layers||(document.getElementById&&!document.all)) {

if (e.which==2||e.which==3) {alert(message);return false;}}}

if (document.layers) 

{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}

else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}



document.oncontextmenu=new Function("return false")

