<!-- 
function preload()
{
image1 = new Image();
image1.src = "/images/sights2.gif";
}
function popup(filename)
{
window.open(filename,'pic','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=450,height=400,left=250,top=300,screenX=250,screenY=300');
}

function checkout(param)
{
var loc = "https://www.speedshooterspecialties.com/catalog/checkout.php?cartid=" + param;
window.open(loc,'checkout','toolbar=no,location=yes,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=550,height=450,left=250,top=200,screenX=250,screenY=200');
}


function show(layerName){
	if (document.layers) {
		document.layers[layerName].visibility='visible';
     }
    else if (document.all) {
		document.all[layerName].style.visibility='visible';
	 }
	else {
		document.getElementById(layerName).style.visibility='visible';
	 }
  }

function hide(layerName){
	if (document.layers) {
		document.layers[layerName].visibility='hidden';
     }
    else if (document.all) {
		document.all[layerName].style.visibility='hidden';
	 }
	else {
		document.getElementById(layerName).style.visibility='hidden';
	 }

  }

// -->