// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var mymessage = "Sorry. Right click feature not functional on this page. If you are trying to go back one, page, click the OK button below and the Back button on your browser. Thank you.";

function rtclickcheck(keyp)
{
    if(navigator.appName == "Netscape" && keyp.which == 3)
    {
        alert(mymessage);
        return false;
    }

    if(navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2)
    {
        alert(mymessage);
        return false;
    }
}

document.onmousedown = rtclickcheck;


//********** Digital Media Net Codes ***************************************************

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