						//STOP USERS FROM STUMBLING ONTO ISOLATED PAGES - BREAK INTO FRAMES
function breakinto()
{
frameloc="frameset.htm"
var thisloc = window.parent.location.href;
var l = frameloc.length;
var i = thisloc.length;
var j = eval(i-l);
var str = (thisloc.substring(j, i));
if (str != frameloc) 
{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")
