self.moveTo(screen.width/2-400,screen.availHeight/2-300);self.resizeTo(800,600);	

// ### Open NCIw ###
var windowWNCI = "810"; //screen.availWidth
var windowHNCI = "670"; //screen.availHeight
var windowXNCI = (screen.width/2)-(windowWNCI/2);
var windowYNCI = (screen.height/2)-(windowHNCI/2);

s = "width="+windowWNCI+", height="+windowHNCI;
//var beIE = document.all?true:false

function openNCI(){
if (navigator.appName.indexOf("Explorer") != -1){
	
	NCI = window.open("NCI/NCI.html","NCI","fullscreen=0, scrollbars=no"+s)     
	NCI.blur()
	window.focus()
	NCI.resizeTo(windowWNCI, windowHNCI)
	NCI.moveTo(windowXNCI, windowYNCI)
	NCI.focus()   
	}
else if (navigator.appName.indexOf("Netscape") != -1){
	alert("Nescape detected... Your browser is not supported, this pages are optimized for MS Internet Explorer 6.");
}
else if (navigator.appName.indexOf("Opera") != -1){
	alert("Opera detected... Your browser is not supported, this pages are optimized for MS Internet Explorer 6.");
	}
else{
	alert("... Your browser is not supported, this pages are optimized for MS Internet Explorer 6.");
	}
}



if (window.Event) 
document.captureEvents(Event.MOUSEUP); 
function nocontextmenu() 
{ 
event.cancelBubble = true 
event.returnValue = false; 
return false
}
function norightclick(e) 
{ 
if (window.Event) 
{ 
if (e.which == 2 || e.which == 3) 
return false;
} 
else 
if (event.button == 2 || event.button == 3) 
{ 
event.cancelBubble = true
event.returnValue = false; 
return false //, move();
} 
} 

if (document.layers) { 
document.captureEvents(Event.MOUSEDOWN); 
} 
document.oncontextmenu = nocontextmenu; 
document.onmousedown = norightclick; 
document.onmouseup = norightclick;

function disableselect(e){
return false
}

function reEnable(){
return true
	
}
document.onselectstart=new Function ("return false")

