/* capture the mouse */
function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {

/* hier komt je tekst */
alert('Trisco (c) 2009             ' + '\n' + 'Meer info: info@trisco.nl \n');
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

myPopup = '';
function OpenPupUp(url,w,h) {
	if(myPopup){ myPopup.close(); }
	myPopup = window.open(url,'popupWindow','width='+w+',height='+h+', status=no,toolbar=no,menubar=no,location=no,titlebar=no,resizable=yes,scrollbars=yes');
	if (!myPopup.opener)
		myPopup.opener = self;
}
