

<!-- Begin
//configure no right click
// +------------------------------------------------------------+
// | SteevenZ                        Version 2.0                |
// | Copyright 2002  SteevenZ        webmaster@steevenz.com     |
// | Created 08/03/2002              Last Modified 08/04/2002   |
// | Web Site:                       http://www.steevenz.com    |
// +------------------------------------------------------------+
// |                 Copyright © 2002 SteevenZ                  |
// |                    All Rights Reserved                     |
// +------------------------------------------------------------+

function No()
{
    return false;
}

document.oncontextmenu=No;
document.ondragstart=No;

//configure status message to show
function hidestatus()
{
window.status=''
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus

//End -->

