﻿/// <reference path="jquery-1.4.1-vsdoc.js" />
// Copywrite 2011 Better Optics LLC - kman@toocoolwebs.com
// Script for home page www.sportoptics.com
$(document).ready(function () {
    if ($('#ctl00_MainContentHolder_ContentColumnControl1_ctl00_KeywordField') !== null) {
        $('#ctl00_MainContentHolder_ContentColumnControl1_ctl00_KeywordField').focus(function () {
            $(this).val('');
        });
    }

    if (jQuery('#ctl00_Footer1_ContentColumnControl1_ctl00_EmailAddressField') !== null) {
        jQuery('#ctl00_Footer1_ContentColumnControl1_ctl00_EmailAddressField').focus(function () {
            jQuery(this).val('');
        });
    }
});

// Start right click --------------
var message = "All images on this site are the sole property of SportOptics.com. Any non-authorized commercial use will result in civil and criminal prosecution."; // Your no right click message here
var closeWin = "0"; // Do you want to close window after message (1 for yes 0 for no)

function IE(e) {
    if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3")) {
        alert(message); if (closeWin == "1") self.close();
        return false;
    }
}
function NS(e) {
    if (document.layers || (document.getElementById && !document.all)) {
        if (e.which == "2" || e.which == "3") {
            alert(message); if (closeWin == "1") self.close();
            return false;
        }
    }
}

document.onmousedown = IE; document.onmouseup = NS; document.oncontextmenu = new Function("return false");
// End right click


