//if(top.frames.length==0)top.location="http://www.bomvideo.nl/";

function openw(html, scroll, width, height) {
    obj=open("","width" + width + "height" + height + "","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + scroll + ",resizable=no,copyhistory=no,width=" + width + ",height=" + height + ",left=0,top=0");
    obj.location = html;
    obj.focus();
}

ns = (document.layers)? true:false 
ie = (document.all)? true:false 

if (ns) document.captureEvents(Event.MOUSEMOVE | Event.MOUSEDOWN) 

document.onmouseover = winStatus; 
document.onmousedown = mouseDown; 
document.oncontextmenu = mouseDown; 

function winStatus(ev){
	window.status='Copyright 2008 Bom Video'; 
	return true;
}

function mouseDown(ev){
    if (ie) { 
        if (event.button != 1) { 
            return false; 
        }
    }
    if (ns) { 
        if (ev.which == 3) { 
            return false; 
        }
    }
}
