// javascript Document

<!-- CopyRight Levensstroom-->
<!-- Original: vragenstaatvrij@heartfulness.be -->
<!-- Begin

if (this.name!='fullscreen'){ 
  window.open(location.href,'fullscreen','fullscreen,scrollbars') 
} 

msg="";
ie=document.all;
n4=document.layers;
gk=(navigator.userAgent.match(/Gecko/i)!=null);

function klikIE() {
	if (ie) {
		(msg);
		return false;
		}
	}
	
function klikNS(e) {
	if (n4||(document.getElementById&&!document.all)) {
		if (e.which>=2) {
			(msg);
			return false;
			}
		}
	}

if (n4) {
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=klikNS;
	}
	else{
		document.onmouseup=klikNS;
		document.oncontextmenu=klikIE;
		}

document.oncontextmenu=new Function("return false")
// --> 



function disableselect(e){
return false
}

function reEnable(){
return true
}

document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}


<!-- Functie voor gebruik van toetsten
function toets(e){
msg="Sorry, Copyright Levensstroom!";
   if (ie){    //For ctrl, alt and print keys
     if(event.keyCode == 17 || event.keyCode == 18 || event.keyCode == 42){
		 alert(msg);
		 if(event.shiftKey && event.keyCode == 121)
		 alert(msg);	 
		 return false;
		 }
	}
	else{
		if(n4 || gk){   // NAV en FireFox
			alert(msg);
			return false;
			}
		}
}
document.onkeydown=toets;
//end of function

<!-- Sluit venster --> 
function sluit(){
close();
}
<!-- Einde 

<!--  lopende boodschap -->
msg = "Volg de stroom van je leven";

timeID = 10;
stcnt = 16;
wmsg = new Array(33);
        wmsg[0]=msg;
        blnk = "                                                               ";
        for (i=1; i<32; i++)
        {
                b = blnk.substring(0,i);
                wmsg[i]="";
                for (j=0; j<msg.length; j++) wmsg[i]=wmsg[i]+msg.charAt(j)+b;
        }

function wiper()
{
        if (stcnt > -1) str = wmsg[stcnt]; else str = wmsg[0];
        if (stcnt-- < -40) stcnt=31;
        status = str;
        clearTimeout(timeID);
        timeID = setTimeout("wiper()",100);
}

wiper()
// -->

