////////// begin geen rechter klik //////////

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;
 }
}
document.oncontextmenu=nocontextmenu;
document.onmousedown=norightclick;

function mouseDown(e) {
 var shiftPressed=0;
 if (parseInt(navigator.appVersion)>3) {
  if (navigator.appName=="Netscape")
       shiftPressed=(e.modifiers-0>3);
  else shiftPressed=event.shiftKey;
  if (shiftPressed)
 {
   window.blur()
   window.focus()
   return false;
  }
 }
 return true;
}
if (parseInt(navigator.appVersion)>3) {
 document.onmousedown = mouseDown;
 if (navigator.appName=="Netscape") 
  document.captureEvents(Event.MOUSEDOWN);
}

////////// einde geen rechter klik //////////



////////// begin statusbalk tekst //////////

 window.status='BeachClubKatwijk © BCK © Copyright'

function MM_openBrWindow(theURL,winName,features)
{
 window.open(theURL,winName,features);
}

////////// einde statusbalk tekst //////////



////////// begin popup //////////

function pop(url,w,h,scroll){
  if(scroll==1) bars='yes';
	else bars='no';
  popwindow= open(url, "popwin","width=" + w + "px,height==" + h + "px,top=0,left=0;fullscreen=no,scrollbars==" + bars + ",location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes");
}

////////// einde popup //////////



////////// begin statusbalk scroll tekst //////////

/// plaats in de body de volgende code: <BODY onload="timerONE=window.setTimeout('scroller(100)',500);"> ///

function scroller(seed)
{
var m1 = "Meld je aan bij masseurindebuurt.nl geheel GRATIS ook in de toekomst!!!";

var msg = m1;
var out = " ";
var c   = 1;

if (seed > 100) {
seed--;
var cmd="scroller(" + seed + ")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=" ";
}
out+=msg;
seed--;
var cmd="scroller(" + seed + ")";
window.status=out;
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed--;
var cmd="scroller(" + seed + ")";
window.status=out;
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=" ";
timerTwo=window.setTimeout("scroller(100)",75);
}
}
}

////////// einde statusbalk scroll tekst //////////
