﻿/// <reference path="jquery-1.4.1-vsdoc.js" />
// Copywrite 2010 Better Optics LLC - kman@toocoolwebs.com
// Script for home page www.sportoptics.com
$(document).ready(function() {
    $('#ctl00_MainContentHolder_ContentColumnControl1_ctl00_KeywordField').focus();
});



// 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

// Start Comodo ------------------
//<![CDATA[
var cot_loc0 = (window.location.protocol == "https:") ? "https://secure.comodo.net/trustlogo/javascript/cot.js" :
"http://www.trustlogo.com/trustlogo/javascript/cot.js";
document.writeln('<scr' + 'ipt language="JavaScript" src="' + cot_loc0 + '" type="text\/javascript">' + '<\/scr' + 'ipt>');
//]]>
// End Comodo