if ( window != top )
top.location.href = window.location.href;
//
 function CloseThis()  {
    self.close();
	}
 
//
function openWin(fileName) {
  var windowAttribs="width=550,height=400,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no";
  var newWin = window.open(fileName,"",windowAttribs);
  return false;
  }
//
function out(){ 
   window.focus(); 
}
function openLink(selectedIndex) {
var windowAttribs="";
var newWin = window.open(selectedIndex,"",windowAttribs);
return false;
}

var message="Menu options not available for this screen";


function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(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=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

