
	
<!--


function addtofav(linkUrl,LinkName)
{
  external.AddFavorite(linkUrl,LinkName);
}

function show(href, Width, Height, count, scr) {
    // wat een werk!! Pieter
    var url=href;
    var win='toolbar=0,location=0,status=0,menubar=0,directories=0,resizable=0,scrollbars=1,target=_new';

    w=Width;
    h=Height;
    var sizedwin=win + ',width=' + w + ',height=' + h + ',scrollbars=' + scr;

        if(window == 'multiple') {
                var windowname = 'Image_Window_' + count;
                open(url, windowname, sizedwin);
        }
        else {
                var windowname = 'Image_Window';
                popup = open(url, windowname, sizedwin);
                popup.focus();
        }
    return false;
}
//-->

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;	