//self.moveTo(screen.width/2-415,screen.availHeight/2-85);self.resizeTo(830,170);	

// ### Open NCI- fredfalk ###
var windowWNCI = "1014"; //screen.availWidth
var windowHNCI = "496"; //screen.availHeight
var windowXNCI = (screen.width/2)-(windowWNCI/2);
var windowYNCI = (screen.height/2)-(windowHNCI/2);

//var beIE = document.all?true:false

function openFREDFALK(){
if (navigator.appName.indexOf("Explorer") != -1){
	
	NCI = window.open('home/index.html','FREDFALK','fullscreen=no, scrollbars=no, status=no, resizable=yes')     //Fenstergröße folgt im nächsten Fenster onload
	NCI.blur()
	window.focus()
	NCI.resizeTo(windowWNCI, windowHNCI)
	NCI.moveTo(windowXNCI, windowYNCI)
	NCI.focus()   
	}
else if (navigator.appName.indexOf("Netscape") != -1){
	alert("Nescape detected... Sorry, your browser is not supported at the moment but we're working on it. Please check later or use Internet Explorer 6 if you want to enjoy all design details of the following sites.");
}
else if (navigator.appName.indexOf("Opera") != -1){
	alert("Opera detected... Sorry, your browser is not supported at the moment but we're working on it. Please check later or use Internet Explorer 6 if you want to enjoy all design details of the following sites.");
	}
else{
	alert("... Sorry, your browser is not supported at the moment but we're working on it. Please check later or use Internet Explorer 6 if you want to enjoy all design details of the following sites.");
	}
}



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")

