
<!-- rechter muis knop -->
var message="Sorry, u kunt uw rechter muis knop niet gebruiken. ";
function click(e) { 
if (document.all) {
if (event.button==2||event.button==3) { 
alert(message);
return false;} 
} 
if (document.layers) {
if (e.which == 3) {
alert(message); 
return false; 
} 
} 
} 
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}document.onmousedown=click; 
// 


<!-- Achtergrondkleur wijzigen met een mouse over -->
<!-- Werkt alleen in IE 4.0 > -->
function bcolor(bcol,d_name)
{
if (document.all)
{
 var thestyle= eval ('document.all.'+d_name+'.style');
 thestyle.backgroundColor=bcol;
 }
}
//






<!-- Original:  John Delmonte  -->

// Begin

function popup(ix,iy,ititle,tekst) { 

win = window.open("","popup","width="+ix+",height="+iy+",menubar=no,toolbar=no,scrollbars=yes");

win.document.open();
win.document.write("<html><head><title>"+ititle+"</title>");
win.document.write("</head><body>");
win.document.write(""+tekst+"</body></html>");
win.document.close();
}
//  End 



<!-- Original:  Anders Jennerberg (anders@katedral.se)  -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

// Begin
function ViewImage(ifile,ix,iy,ititle) { 
var win;
var sWidth;
var sHeight;
var NS = (document.layers) ? 1 : 0;
win = window.open("","imageviewer","width="+ix+",height="+iy+",menubar=no,toolbar=no");

 

if (NS) {
sWidth = win.innerWidth;
sHeight = win.innerHeight;
} else {
sWidth = win.document.body.clientWidth;
sHeight = win.document.body.clientHeight;
}
if(sWidth!=ix || sHeight!=iy) {
win.close();
setTimeout("ViewImage('"+ifile+"',"+ix+","+iy+",'"+ititle+"')", 250);
return;
}
win.document.open();
win.document.write("<html><head><title>"+ititle+"</title>");
win.document.write("</head><body>");
win.document.write('<div style="position:absolute;width:'+ix+'px;height:'+iy+'px;left:0px;top:0px">');
win.document.write("<img src="+ifile+"></div></body></html>");
win.document.close();
}
//  End -->

	
function Startje(test) {
var blabla 
blabla= window.open(test, '', 'toolbar,menubar,scrollbars,resizable,directories,status,location,copyhistory,') ;
}

			
			

