self.defaultStatus="Studio Remi Utrecht"

IE4plus = (document.all) ? true : false;
NS4 = (document.layers) ? true : false;

function clickIE(){
	return false;
}

function clickNS(e){
	if (e.which==2 || e.which==3) {
		return false;
	}
 }
 
if (!IE4plus) {
	document.captureEvents(Event.MOUSEDOWN || Event.MOUSEUP);
	document.onmousedown=clickNS;
	document.onmouseup= clickNS;
	document.oncontextmenu=clickIE; // For NS 6+
} else {
	document.onmouseup= clickIE;
	document.oncontextmenu=clickIE;
}

var win= null;
function popUp(mypage){
	day = new Date();
	id = day.getTime();
  var winl = (screen.width-400)/2;
  var wint = (screen.height-400)/2;
  var settings ='height=400,';
  settings +='width=400,';
  settings +='top='+wint+',';
  settings +='left='+winl+',';
  settings +='scrollbars=no,';
  settings +='resizable=yes';
  win=window.open(mypage,id,settings);
  if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
} 

function MM_openBrWindow(theURL,winName,features) { 
window.open(theURL,winName,features);
}