<!--

document.write("<center><font size='-2' face = 'arial' color = '#717C96'>All images and content &copy; 2011-2012 St. Louis Color, Inc., All rights reserved. <br>Website maintained by St. Louis Color, Inc.</font></center>")

//-->



 
/* prevent users from right clicking on images */
function trap_contextmenu()
{
    alert( "You do not have permission to copy this image!" );
    return false;
}
for (pic=0; pic<document.images.length; pic++)
{
    document.images[pic].oncontextmenu=trap_contextmenu;
}

/**
 * Also note the following is used to prevent the image toolbar in newer 
 * browsers that allows users a quick option to save the image to their computer
 * <meta http-equiv="imagetoolbar" content="no">
 * It should be placed inside the <head></head> section of every page.
 */


/* prevent users from selecting things on the page - to make copy/paste more difficult */

function trap_selection()
{
    return false;
}
document.body.ondragstart=trap_selection;
document.body.onselectstart=trap_selection;

/* preventing selection in firefox takes more work... */
var netscape_mouse_pressed = false;
function netscape_mouse_down()
{
    netscape_mouse_pressed = true;
}
function netscape_mouse_up()
{
    netscape_mouse_pressed = false;
}
function netscape_mouse_move()
{
    if( netscape_mouse_pressed )
    {
        netscape_mouse_pressed = false;
        document.body.focus();
    }
}

var browser = navigator.appName.substring ( 0, 3 );
if ( browser != "Mic" )
{
    document.onmousedown = netscape_mouse_down;
    document.onmouseup = netscape_mouse_up;
    document.onmousemove = netscape_mouse_move;
}

