const orderSubTotal ='90'; const orderTotal ='90'; const numOfItems ='1'; const items =new Array('Fiocchi 12-Gauge Blanks (100 rounds -- 4 boxes)'); const ids =new Array('fiocchi-12-gauge-blanks-100'); const codes =new Array('7581'); const qtys =new Array('1'); const price =new Array('90'); const orderTax ='0'; const orderShipping ='0'; const appliedPromoIdList =''; const coupon =''; const storeId ='gundog'; const activeShipPromotionCount =''; const itemImages =new Array('https://s.turbifycdn.com/aah/gundog/100-fiocchi-12-gauge-blanks-4-boxes-110.png'); const cart = {"items":[{"name":"Fiocchi 12-Gauge Blanks (100 rounds -- 4 boxes)","id":"fiocchi-12-gauge-blanks-100","code":"7581","qty":"1","price":"90","imageUrl":"https:\/\/s.turbifycdn.com\/aah\/gundog\/100-fiocchi-12-gauge-blanks-4-boxes-110.png","options":[]}],"subTotal":"90","orderTotal":90,"orderTax":0,"orderShipping":0,"storeId":"gundog","lineItems":[{"label":"Subtotal","amount":90},{"label":"Total","amount":90}],"shippingMethods":[{"id":0,"label":"Standard Shipping US48"},{"id":1,"label":"FREE SHIPPING - qualified orders"},{"id":2,"label":"Next Business Day"},{"id":3,"label":"SATURDAY Next Day Air"},{"id":4,"label":"Customer Pickup"},{"id":5,"label":"AK\/HI Shipping"},{"id":6,"label":"APO\/FPO\/Territories"},{"id":7,"label":"E-COLLAR EXPRESS (2-day)"},{"id":8,"label":"COLLAR SHIPPING SPECIAL"},{"id":9,"label":"SMALL STUFF Shipping"},{"id":10,"label":"Digital Streaming"},{"id":11,"label":"ANYTHING but POSTAL"},{"id":12,"label":"2nd Business Day"},{"id":13,"label":"E-COLLAR EXPRESS (2-business day)"},{"id":14,"label":"UPGRADE to 2nd Business Day"},{"id":15,"label":"BIG DAWG SHIPPING"},{"id":16,"label":"Big Dawg 2-DAY EXPRESS Upgrade"},{"id":17,"label":"FREE SHIPPING on $25 ORDERS (until Steve finds out)"},{"id":18,"label":"FREE SHIPPING on ORDERS OVER $25 (until Steve finds out)"}],"order_server":"order.store.turbify.net"}; const YAHOO_Smb_debug =false;
Gun Dog Supply Online Shopping Cart!
if (window.location.hash == "#atcRedirect") { window.location = 'https://secure.gundogsupply.com/gundog/ymix/MetaController.html?ysco_key_store_id=gundog§ionId=ysco.shipping&ysco_key_event_id=1'; }
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://internal.gundogsupply.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'xxxxscript','dataLayer','GTM-K23D8KL');
var monitus=monitus||{}; monitus.id=242;monitus.ga_mode=2;
var checkoutStepNum = 1;
csell_env = 'ue1'; storeCheckoutDomain = 'secure.gundogsupply.com';
var showIconAlt = 'Show'; var hideIconAlt = 'Hide'; var hideBillingAddressEnabled = 1; var storedPaymentsEnabled = 0;
var trustedComputer = "";
function stopRKey(evt) { var formName = ''; var evt = (evt) ? evt : ((event) ? event : null); var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null); if ( (node.form !== undefined) && (node.form !== null) ) { formName = node.form.name; } if ((evt.keyCode == 13) && (formName == 'CheckoutForm')) { if (node.type == "text") { return false; } } } document.onkeypress = stopRKey;
YAHOO.namespace( 'YAHOO.Hack' ).FixIESelectWidth = new function() { var oSelf = this; var YUE = YAHOO.util.Event; var YUD = YAHOO.util.Dom; var oTimer = {}; var oAnim = {}; var nTimerId = 0 ; var dLastFocalItem; var ie7 = !!(document.uniqueID && typeof(XMLHttpRequest)!='undefined'); function init(el){ el = el || this; if( el.tagName.toLowerCase() == 'select') { var oRs = el.runtimeStyle; var oPRs = el.parentNode.runtimeStyle; oPRs.fonSize = 0; var sDisplay = el.parentNode.currentStyle.display.toLowerCase() ; if( sDisplay=='' || sDisplay=='inline' || sDisplay=='inline-block' ) { oPRs.display = 'inline-block'; oPRs.width = el.offsetWidth + 'px'; oPRs.height =el.offsetHeight + 'px'; oPRs.position = 'relative'; oRs.position = 'absolute'; oRs.top = 0; oRs.left = 0; }; el._timerId = ( nTimerId+=1 ); el.selectedIndex = Math.max( 0 , el.selectedIndex ); oTimer[ '_' + el._timerId ] = setTimeout('void(0)',0); oAnim [ 'A' + el._timerId ] = setTimeout('void(0)',0); YUE.on( el, 'mouseover' , onMouseOver); YUE.on( document, 'mousedown' ,onMouseDown , el, true); YUE.on( el, 'change' ,collapseSelect , el, true); }; } function collapseSelect(e){ status++; this.runtimeStyle.width = ''; } function onMouseOver(e) { var el = this; if(dLastFocalItem && dLastFocalItem !=el){ onMouseDown.call( dLastFocalItem , e ); }; var sTimerId ='_' + el._timerId ; var sAniId = 'A' + el._timerId ; clearTimeout( oTimer[ sTimerId ] ); var onTween = function(){ clearTimeout( oAnim [ sAniId ] ); if( Math.abs( nEndWidth - nStartWidth ) > 3 ){ nStartWidth += (nEndWidth - nStartWidth ) /3; el.runtimeStyle.width = nStartWidth + 'px'; oAnim [ sAniId ] = setTimeout( onTween ,0 ); } else { el.runtimeStyle.width = 'auto'; el.selectedIndex = Math.max( 0 , el.selectedIndex ); } } var nStartWidth = el.offsetWidth ; el.runtimeStyle.width = 'auto'; var nEndWidth = el.offsetWidth; clearTimeout( oAnim [ sAniId ] ); onTween(); el.focus(); dLastFocalItem = el; } function onMouseDown(e , el ){ el = ( e.srcElement || e.target ); if( el == this && e.type!='mouseover' ) { status++; YUE.stopEvent(e); return false; }; el = this; clearTimeout( oAnim [ 'A' + el._timerId ] ); var sTimerId ='_' + el._timerId ; var doItLater = function(){ el.runtimeStyle.width = ''; }; if( e.type=='mouseover'){ doItLater();} else{ oTimer[ sTimerId ] = setTimeout(doItLater,100); } } function constructor(sId){ sId = [ sId , ''].join(''); //Only fix for IE55 ~ IE7 if(document.uniqueID && window.createPopup ){ YUE.onAvailable(sId ,init ); return true; }else{return false}; }; return constructor; } var isIE9 = 0; var ieversion; if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x; ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number if (ieversion > 8){ isIE9 = 1; } } if (isIE9 === 0) { var s6 = new YAHOO.Hack.FixIESelectWidth('shipping-state'); var s7 = new YAHOO.Hack.FixIESelectWidth('billing-state'); }
gundog
Item
Unit Price
Qty.
Cost
Fiocchi 12-Gauge Blanks (100 rounds -- 4 boxes)
[remove]
$90.00
$90.00
Subtotal:
$90.00
Total:
$90.00
Keep Shopping
Shipping Calculator
Zip Code:
State:
-- Please Choose
AK Alaska
AL Alabama
AR Arkansas
AS American Samoa
AZ Arizona
CA California
CO Colorado
CT Connecticut
CZ Canal Zone
DC District of Columbia
DE Delaware
FL Florida
GA Georgia
GU Guam
HI Hawaii
IA Iowa
ID Idaho
IL Illinois
IN Indiana
KS Kansas
KY Kentucky
LA Louisiana
MA Massachusetts
MD Maryland
ME Maine
MI Michigan
MN Minnesota
MO Missouri
MP Mariana Islands
MS Mississippi
MT Montana
NC North Carolina
ND North Dakota
NE Nebraska
NH New Hampshire
NJ New Jersey
NM New Mexico
NV Nevada
NY New York
OH Ohio
OK Oklahoma
OR Oregon
PA Pennsylvania
PR Puerto Rico
RI Rhode Island
SC South Carolina
SD South Dakota
TN Tennessee
TX Texas
UT Utah
VA Virginia
VI Virgin Islands
VT Vermont
WA Washington
WI Wisconsin
WV West Virginia
WY Wyoming
AA APO
AE APO
AP APO
FP FPO
Checking for shipping promotions...
Select Your Shipping Method:
Standard Shipping US48
FREE SHIPPING - qualified orders
Next Business Day
SATURDAY Next Day Air
Customer Pickup
AK/HI Shipping
APO/FPO/Territories
E-COLLAR EXPRESS (2-day)
COLLAR SHIPPING SPECIAL
SMALL STUFF Shipping
Digital Streaming
ANYTHING but POSTAL
2nd Business Day
E-COLLAR EXPRESS (2-business day)
UPGRADE to 2nd Business Day
BIG DAWG SHIPPING
Big Dawg 2-DAY EXPRESS Upgrade
FREE SHIPPING on $25 ORDERS (until Steve finds out)
FREE SHIPPING on ORDERS OVER $25 (until Steve finds out)
Please enter your zip code to see available shipping methods.
SHOPPING CART ISSUES? Call Steve at 1-800-624-6378
Your credit card will be billed as "Gun Dog Supply"
Contact Us
|
100% Satisfaction Guarantee
|
About Us
Your Privacy Protected
|
Free Shipping (US Only)
|
Customer Testimonials
GUN DOG SUPPLY -
"Serving Hunting & Field Dog Owners Nationally Since 1972."
Call
1-800-624-6378
to order!
GDS Warehouse and Showroom:
17645 U.S. Highway 82
Mathiston, Mississippi, 39752 USA
click to see BROWSER AND VERSION
function pdTurnOnPleaseWaitAnimation(message = "Preparing Your Order...") { jQuery.blockUI({ css: { border: 'none', padding: '15px', backgroundColor: '#000', '-webkit-border-radius': '10px', '-moz-border-radius': '10px', opacity: .5, color: '#fff' }, overlayCSS: { backgroundColor: '#fff', opacity: 0.8 }, message: message }); } function pdTurnOffPleaseWaitAnimation() { jQuery.unblockUI(); } //*** start blocking animation //pdTurnOnPleaseWaitAnimation(); //*** unblock (no matter what) after 5 seconds setTimeout(pdTurnOffPleaseWaitAnimation, 5000); function pdIsBlank(item) { item = String(item).toLowerCase(); if (item == "undefined" || item == "" || item == "null") return true; else return false; } function pdCheckoutInit() { var page = ""; try {page = document.forms["CheckoutForm"]["sectionId"].value;} catch(e) {} if(page == "") page = pdGetQueryString("sectionId"); var jsonCart = "";if(typeof cart !== 'undefined') jsonCart = JSON.stringify(cart); var pdCartSessionId = pdGetCookie("pdCartSessionId"); var pdId = ""; var pdIdTemp = String(window.location.hash.substr(1)); if(pdIdTemp.indexOf("pdId=") > -1) pdId= String(pdIdTemp).replace("pdId=", ""); var xxxxscriptUrl = "https://myaccount.gundogsupply.com/mod_yahooCheckout/services/checkout.php"; xxxxscriptUrl += "?page=" + encodeURIComponent(page); xxxxscriptUrl += "&pdCartSessionId=" + encodeURIComponent(pdCartSessionId); xxxxscriptUrl += "&yahooSessionCookie=" + encodeURIComponent(pdGetCookie("ysco_key_session_cookie")); xxxxscriptUrl += "&yahooShoppingCartCookie=" + encodeURIComponent(pdGetCookie("ysco_key_shopping_cart_cookie")); xxxxscriptUrl += "&yahooCouponValue=" + encodeURIComponent(pdGetYahooCouponValue()); xxxxscriptUrl += "&yahooGiftWrapCharge=" + encodeURIComponent(pdGetGiftWrapCharge()); try{xxxxscriptUrl += "&orderNum=" + encodeURIComponent(orderNum);} catch(e) {} if(pdId != "") xxxxscriptUrl += "&pdId=" + encodeURIComponent(pdId); // Facebook Conversion API parameters. const pd_fbc = pdGetCookie("pd_fbc"); if (!pdIsBlank(pd_fbc)) { xxxxscriptUrl += "&pdFbcId=" + pd_fbc; if (pdIsBlank(pdFbEventId) == false) { xxxxscriptUrl += "&pdFbEventId=" + pdFbEventId; } } var postData = { cart: jsonCart }; // var customerObj = getPdCustomerDataObject(); if (typeof customerObj !== 'undefined') { postData.customer = JSON.stringify(customerObj); } jQuery.ajax({ type: "POST", crossDomain: true, xhrFields: { withCredentials: true }, url: xxxxscriptUrl, data: postData, dataType: "text xxxxscript", }); } function pdGetGiftWrapCharge() { var giftWrapCharge = false; jQuery("#ys_cart .ys_orderLine .ys_first").each(function(){ var lineItemLabel = jQuery(this).text(); if (lineItemLabel.indexOf("Gift Wrap") >= 0){ try{ giftWrapCharge = jQuery(this).next().text().replace(/[^0-9\.]/g, ''); } catch(err) {} } }); return giftWrapCharge; } var pdGetQueryString = function ( field, url ) { var href = url ? url : window.location.href; var reg = new RegExp( '[?&]' + field + '=([^]*)', 'i' ); var string = reg.exec(href); return string ? string[1] : null; }; function pdGetCookie(name) { var cookieValue = ""; var value = "; " + document.cookie; var parts = value.split("; " + name + "="); if (parts.length == 2) cookieValue = parts.pop().split(";").shift(); if(pdIsBlank(cookieValue)) cookieValue = ""; return cookieValue; } function pdGetYahooCouponValue() { var couponValue = "0"; return couponValue; } pdCheckoutInit();
Privacy Policy
-
Merchant's Privacy Policy
// Begin Store Generated Code
// Begin Store Generated Code csell_page_data = {}; csell_page_rec_data = []; ts='TOK_STORE_ID';
// Begin Store Generated Code function csell_GLOBAL_INIT_TAG() { var csell_token_map = {}; csell_token_map['TOK_SPACEID'] = '2022276099'; csell_token_map['TOK_URL'] = ''; csell_token_map['TOK_STORE_ID'] = 'gundog'; csell_token_map['TOK_ITEM_ID_LIST'] = 'fiocchi-12-gauge-blanks-100'; csell_token_map['TOK_ORDER_HOST'] = 'order.store.turbify.net'; csell_token_map['TOK_BEACON_TYPE'] = 'c1'; csell_token_map['TOK_RAND_KEY'] = 'rand'; csell_token_map['TOK_IS_ORDERABLE'] = '1'; c = csell_page_data; var x = (typeof storeCheckoutDomain == 'string')?storeCheckoutDomain:'order.store.turbify.net'; var t = csell_token_map; c['s'] = t['TOK_SPACEID']; c['url'] = t['TOK_URL']; c['si'] = t[ts]; c['ii'] = t['TOK_ITEM_ID_LIST']; c['bt'] = t['TOK_BEACON_TYPE']; c['rnd'] = t['TOK_RAND_KEY']; c['io'] = t['TOK_IS_ORDERABLE']; YStore.addItemUrl = 'http%s://'+x+'/'+t[ts]+'/ymix/MetaController.html?eventName.addEvent&cartDS.shoppingcart_ROW0_m_orderItemVector_ROW0_m_itemId=%s&cartDS.shoppingcart_ROW0_m_orderItemVector_ROW0_m_quantity=1&ysco_key_cs_item=1§ionId=ysco.cart&ysco_key_store_id='+t[ts]; }
// Begin Store Generated Code function csell_REC_VIEW_TAG() { var env = (typeof csell_env == 'string')?csell_env:'prod'; var p = csell_page_data; var a = '/sid='+p['si']+'/io='+p['io']+'/ii='+p['ii']+'/bt='+p['bt']+'-view'+'/en='+env; var r=Math.random(); YStore.CrossSellBeacon.renderBeaconWithRecData(p['url']+'/p/s='+p['s']+'/'+p['rnd']+'='+r+a); }
var YStore = window.YStore||{}; YStore.sessionInfo = ''; YStore.orderButtonFormatStr = '
'; YStore.currencySymbol = '$'; YStore.showCSRecs = 'false'; if (typeof csell_GLOBAL_INIT_TAG === 'function') csell_GLOBAL_INIT_TAG();