//no clicky

msg  = "Configuring the Page file for crash dump failed. ";
msg += "Make sure there is a page file on the boot ";
msg += "partition and that is large enough to ";
msg += "contain all physical memory.";

document.onmousedown = noRightClick;

function noRightClick( mouse_event ) {

	if ( document.all ) {
		// do nothing
	} else if ( document.getElementById ) {
		document.captureEvents( Event.MOUSEDOWN )
	} else if ( document.layers ) {
		document.captureEvents( Event.MOUSEDOWN )
	}

        // Probably Internet Explorer 4 and later

    if( document.all ) {
        if( event.button == 2 || event.button == 3 ) {
            alert( msg );
            return false;
        }
    }

        // Probably Netscape 6 and later

    else if ( document.getElementById ) {

        if( mouse_event.which == 3 ) {
            alert( msg );
            return false;
        }
    }

        // Probably Netscape 4

    else if ( document.layers ) {

        if( mouse_event.which == 3 ) {
            alert( msg );
            return false;
        }
    }
}