STEPHANIS: Smartphones, Televisions, Laptops, Gaming, Home appliances (2024)

Adding to Cart...

Just added to your cart:

Price: Quantity:

Merchandise Total:

View Cart

Continue Shopping

';strHtml += '';jQuery(this.container).find(".js-item-add-to-cart").append(jQuery(strHtml));jQuery(this.container).find(".add_to_cart_form").on("submit", function(){return onSubmit(jQuery(this));});}//for giftcardsAddToCartListView.prototype.createDenominationField = function(fltValue, onChange){var strHtml = '

';strHtml += '$';strHtml += '';strHtml += '';strHtml += '

';jQuery(strHtml).appendTo(jQuery(this.container).find(".add-to-cart-list-view"));jQuery(this.container).find( "input[ name = 'Denomination' ]" ).keyup( function() {onChange(jQuery( this ).val());} );}//for giftcardsAddToCartListView.prototype.setDenominationField = function(fltValue){jQuery(this.container).find( "input[ name = 'Denomination' ]" ).val(fltValue);}AddToCartListView.prototype.getDenominationField = function(){return jQuery(this.container).find( "input[ name = 'Denomination' ]" ).val();}AddToCartListView.prototype.setDenominationMessage = function(strMessage){return jQuery(this.container).find( ".denomination-validation-message" ).html(strMessage);}//create quantity fieldAddToCartListView.prototype.createQuantityField = function(onChange, quantityUnit, minimumOrderQuantity, maximumOrderQuantity, selectedQuantity){if ( this.showQuantityField ) {var strHtml = '

';strHtml += '';strHtml += '

'jQuery(this.container).find(".product-attributes-list-view").append(strHtml);var quantityField1 = '';var quantityField2 = '';jQuery( quantityField1 ).appendTo( jQuery(this.container).find( "#quantity-field-container-" + this.uniqueID ) ).on( "keyup change paste", function() {onChange( jQuery( this ).val() )} );jQuery( quantityField2 ).appendTo( jQuery(this.container).find( "#quantity-field-container-" + this.uniqueID ) ).on( "keyup change paste", function() {onChange( jQuery( this ).val() )} );selectedQuantity = this.updateQuantityField( minimumOrderQuantity, maximumOrderQuantity, selectedQuantity );if ( quantityUnit != '' ) {jQuery(this.container).find('select[name="quantity"]').after('' + quantityUnit + '');}onChange(selectedQuantity);} else {var defaultQuantity = minimumOrderQuantity != '' ? minimumOrderQuantity : 1;var strHtml = '';jQuery(this.container).find(".add-to-cart-list-view").append(strHtml);onChange(defaultQuantity);}}//update quantity fieldAddToCartListView.prototype.updateQuantityField = function(minimumOrderQuantity, maximumOrderQuantity, selectedQuantity){var showDropDownQuantityField = false;// If the difference between the maximum order quantity and the minimum order quantity is greater than 20,// display a text input box.// Otherwise, show a drop down.if ( maximumOrderQuantity != "" ) {var smallestQuantity = minimumOrderQuantity;if ( minimumOrderQuantity != "" ) {if ( maximumOrderQuantity - minimumOrderQuantity <= 20 ) {showDropDownQuantityField = true;}} else {if ( maximumOrderQuantity <= 20 ) {smallestQuantity = 1;showDropDownQuantityField = true;}}}if ( parseFloat( smallestQuantity ) > parseFloat( selectedQuantity ) ) {selectedQuantity = smallestQuantity;}jQuery( this.container ).find( ".minimum-quantity-label" ).remove();jQuery( this.container ).find( ".maximum-quantity-label" ).remove();if ( showDropDownQuantityField ) {jQuery( "#quantity-select-" + this.uniqueID ).empty();for ( var i = smallestQuantity; i <= maximumOrderQuantity; i ++ ) {strOption = '

';jQuery( "#quantity-select-" + this.uniqueID ).append( strOption );jQuery( "#quantity-select-" + this.uniqueID ).val( selectedQuantity );}jQuery( "#quantity-text-" + this.uniqueID ).prop( "disabled", "disabled" ).hide();jQuery( "#quantity-select-" + this.uniqueID ).removeProp( "disabled" ).show();} else {jQuery( "#quantity-select-" + this.uniqueID ).prop( "disabled", "disabled" ).hide();jQuery( "#quantity-text-" + this.uniqueID ).removeProp( "disabled" ).show().val( selectedQuantity );if ( minimumOrderQuantity != "" ) {var strHtml = '

';strHtml+= "Minimum of %quantity%".replace( "%quantity%", minimumOrderQuantity );strHtml+= '

';jQuery( strHtml ).appendTo( jQuery(this.container).find( "#quantity-field-container-" + this.uniqueID ) );}if ( maximumOrderQuantity != "" ) {var strHtml = '

';strHtml+= "Maximum of %quantity%".replace( "%quantity%", maximumOrderQuantity );strHtml+= '

';jQuery( strHtml ).appendTo( jQuery(this.container).find( "#quantity-field-container-" + this.uniqueID ) );}}return selectedQuantity;}AddToCartListView.prototype.showQtyField = function(onClick){this.showQuantityContainer();}AddToCartListView.prototype.hideQtyField = function(onClick){this.hideQuantityContainer();}AddToCartListView.prototype.showQuantityContainer = function() {jQuery(this.container).find("#quantity-field-container-" + this.uniqueID).show();}AddToCartListView.prototype.hideQuantityContainer = function() {jQuery(this.container).find("#quantity-field-container-" + this.uniqueID).hide();}//create purchased in multiples of informationAddToCartListView.prototype.createPurchasedInMultiplesOf = function(purchasedInMultiplesOf){var strHtml = '
';strHtml+= "Purchase in multiples of %number%".replace("%number%", purchasedInMultiplesOf);strHtml+= '
';jQuery(strHtml).appendTo(jQuery(this.container).find(".quantity-field-container"));}//affiliate url//delivery methodAddToCartListView.prototype.createDeliveryMethodDropdown = function(options){var strHtml = '

';strHtml += '';strHtml += '

';jQuery(strHtml).appendTo(jQuery(this.container).find(".add-to-cart-list-view"));}AddToCartListView.prototype.getDeliveryMethod = function(){return jQuery(this.container).find( "select[ name = 'DeliveryMethodID' ]" ).val();}AddToCartListView.prototype.resetForm = function(){jQuery(this.container).find('form[name="add_to_cart_form"]')[0].reset();}AddToCartListView.prototype.clearAllSelectAttributes = function(){jQuery(this.container).find('[name="ProductAttributeOptionIDs"]').val("");jQuery(this.container).find('[name="ProductAttributeOptionIDs"]').trigger("change");}AddToCartListView.prototype.createClearAllAttributesButton = function(){var strHtml = 'Clear All';$clearAllAttributesButton = jQuery(strHtml);this.container.find(".add_to_cart_form_content").append($clearAllAttributesButton);return $clearAllAttributesButton;}//create attribute selection for custom optionsAddToCartListView.prototype.createAttributeSelection = function(productAttribute, onChange, openAttributeOptionSelectionWindow, showOptionPreview){var isInProductAttributeGrid = productAttribute.ISINPRODUCTATTRIBUTEGRID;var selectedOption = productAttribute.SELECTEDVALUE;var strHtml = '

';strHtml += '

' ;var strRequiredClass = "";if(productAttribute.ISREQUIRED){strRequiredClass = " attributeSelectionLabelRequired";}if (this.attributeDisplayMode == "image-list" && productAttribute.HASIMAGES){strHtml += '

';strHtml += '

';strHtml += '' + productAttribute.NAME + ':';strHtml += '

' + '

';strHtml += '
    ';var numberOfItemsBeforeExpanding = 4;var attributeOptionsToLoad = Math.min(numberOfItemsBeforeExpanding, productAttribute.OPTIONS.length);for (var i = 0; i < attributeOptionsToLoad; i++){strHtml += this.createImageAttributeOption(productAttribute.PRODUCTATTRIBUTEID, productAttribute.OPTIONS[i], false);}strHtml += '
';strHtml += '';strHtml += "View All %name% options".replace("%name%", productAttribute.NAME);strHtml += '';strHtml += '';//if we didn't expand all the options, then lets add the loading icon, cause it will be needed//to show things are loading.if (numberOfItemsBeforeExpanding < productAttribute.OPTIONS.length){strHtml += '

';strHtml += '

';strHtml += '

Loading...

';strHtml += '

';}strHtml += '

';}else{strHtml += '';strHtml += '

';strHtml += '';if (productAttribute.HASIMAGES){strHtml += '

';strHtml += '';strHtml += '

';}strHtml += '

';}strHtml += '

';strHtml += '

';jQuery(strHtml).appendTo(jQuery(this.container).find(".product-attributes-list-view"));jQuery(this.container).find("[data-productattributeid='" + productAttribute.PRODUCTATTRIBUTEID + "'] input[type='radio'].attributeoption, #ProductAttributeOptionID_" + productAttribute.PRODUCTATTRIBUTEID + '_' + this.uniqueID).on("keyup change paste", function(){onChange( productAttribute.PRODUCTATTRIBUTEID, jQuery(this).val() );});jQuery(this.container).find(".open-attribute-selection-window[data-attributeid='" + productAttribute.PRODUCTATTRIBUTEID + "']").on("click", function(){openAttributeOptionSelectionWindow( productAttribute.PRODUCTATTRIBUTEID, jQuery(this).val() );});if ( this.attributeDisplayMode != "image-list" && productAttribute.HASIMAGES){jQuery(this.container).find("#ProductAttributeOptionID_" + productAttribute.PRODUCTATTRIBUTEID).on("change", function(){showOptionPreview( productAttribute.PRODUCTATTRIBUTEID, jQuery(this).val() );});}if ("image-list" == "image-list" && productAttribute.HASIMAGES){var v = this;jQuery(this.container).find(".viewMoreAttributeOptions[data-attributeid='" + productAttribute.PRODUCTATTRIBUTEID +"']").click(function(){v.viewMoreAttributeOptions(productAttribute, onChange);return false;});jQuery(this.container).find(".hideMoreAttributeOptions[data-attributeid='" + productAttribute.PRODUCTATTRIBUTEID +"']").click(function(){v.hideMoreAttributeOptions(productAttribute);return false;});this.addAttributeOptionTooltips(productAttribute.PRODUCTATTRIBUTEID, false);if (selectedOption != ''){var strSelector = "[data-productattributeid='" + productAttribute.PRODUCTATTRIBUTEID + "'] input[type='radio'][value='" + selectedOption + "'].attributeoption";if (jQuery(this.container).find(strSelector).length > 0){jQuery(this.container).find(strSelector).attr("checked", "checked").trigger("change");}else{strHtml = '';//if not loaded yet, use a hidden input field to store value selectedjQuery(this.container).find(".add_to_cart_form").append(strHtml);$hiddenSelectedValue = jQuery(this.container).find('[name="ProductAttributeOptionIDs_' + productAttribute.PRODUCTATTRIBUTEID + '"].hiddenSelectedValue');$hiddenSelectedValue.change( function(){onChange(productAttribute.PRODUCTATTRIBUTEID, selectedOption);});$hiddenSelectedValue.trigger("change");}}}}//if selecting from the opener window an attribute( like ACHS )AddToCartListView.prototype.setAttributeOption = function(intProductAttributeID, intProductAttributeOptionID){jQuery(this.container).find("#ProductAttributeOptionID_"+intProductAttributeID).val(intProductAttributeOptionID).change();};//change the preview image based on the option selected(when not using swatches)AddToCartListView.prototype.showOptionPreview = function(intProductAttributeID, strImage){if (strImage != ''){jQuery(this.container).find("#option_preview_"+intProductAttributeID).attr("src", strImage).show();}else{jQuery(this.container).find("#option_preview_"+intProductAttributeID).hide();}}AddToCartListView.prototype.resetGridAttribute = function(intProductAttributeID){_$attributeControlContainer = jQuery(this.container).find(".attributeSelectionWithImages[data-productattributeid='" + intProductAttributeID + "' ]" );_$attributeControlContainer.find("li[data-optionid]").removeClass( 'not-eligible' );_$attributeControlContainer.find("input[type='radio'].attributeoption:checked").prop('checked', false).trigger("change");_$attributeControlContainer.find("input[type='radio']").prop('disabled', false);$attributeOptionList = _$attributeControlContainer.find( ".attributeOptionList" );$allOptions = $attributeOptionList.find(".attributeoptioncontainer");$allOptions.removeClass("attribute-option-hightlight");_$attributeControlContainer.find( ".attributeCaption[ data-attributeid='" + intProductAttributeID + "' ]" ).html("");}//change event for attribute optionAddToCartListView.prototype.updateAttributeOptionSelection = function(intProductAttributeID, intProductAttributeOptionID, strCaptionSelected){$attributeOptionList = jQuery(this.container).find(".attributeOptionList[data-productattributeid='" + intProductAttributeID + "' ]" );$allOptions = $attributeOptionList.find(".attributeoptioncontainer");$selectedOption = $allOptions.filter("[ data-optionid='" + intProductAttributeOptionID + "' ]");// fade out all options$attributeOptionList.parents(".attributeSelectionWithImages").addClass("attribute-option-selected");// highlight selected option$allOptions.removeClass("attribute-option-hightlight");$selectedOption.addClass("attribute-option-hightlight");jQuery( ".attributeCaption[ data-attributeid='" + intProductAttributeID + "' ]" ).html( strCaptionSelected );}//common ground, as to what to return to the controller, for the attributes selectedAddToCartListView.prototype.getProductAttributeSelectedValues = function(){var productAttributes = {};var selector = "select[name='ProductAttributeOptionIDs'], .attribute-type-dropdown-state-country select"+ ", input[type='radio'].attributeoption:checked, .attribute-type-singleline input[type='text'], .attribute-type-date input[type='text']"+ ", .attribute-type-textarea textarea, .product-attribute-file-upload input[type='file']";//map all attribute select dropdowns to their selected valuesif (jQuery("#UseAttributeGridField").length && jQuery("#UseAttributeGridField").attr("checked") == "checked"){jQuery(".attribute-grid-add-to-cart-container").filter(function(){var $attribute = jQuery(this);if ($attribute.hasClass("custom-options-attribute")&& $attribute.hasClass("attribute-grid-product-attribute")){return false;}return true;}).find(selector).each(function(){productAttributes[jQuery(this).data("attributeid")] = jQuery(this).val();});}else{jQuery(this.container).find(selector).each(function(){productAttributes[jQuery(this).data("attributeid")] = jQuery(this).val();});}return productAttributes;}//Create attribute option thumbnail, to selectAddToCartListView.prototype.createImageAttributeOption = function(productAttributeID, option, lazyLoaded){strHtml = '

  • ';var strID = 'Radio_' + productAttributeID + '_' + option.PRODUCTATTRIBUTEOPTIONID + '_' + this.uniqueID;strHtml += '';strHtml += '';strHtml += '
  • ';return strHtml;}AddToCartListView.prototype.addAttributeOptionTooltips = function(productAttributeID, lazyLoaded){var $attributeOptions = jQuery(this.container).find("#attributeOptionList_" + productAttributeID + " li.js-tooltip" + (lazyLoaded ? ".lazyLoadedOption" : ""));$attributeOptions.each(function(){jQuery(this).tooltipsy({offset: [1, 0],content: "

    STEPHANIS: Smartphones, Televisions, Laptops, Gaming, Home appliances (4)

    "});});setTimeout(function(){$attributeOptions.each(function(){( new Image() ).src = jQuery(this).data("tooltipimage");});}, 300);jQuery(window).scroll(function(){$attributeOptions.each(function(){jQuery(this).data("tooltipsy").hide();});});}//View all attribute optionsAddToCartListView.prototype.viewMoreAttributeOptions = function(productAttribute, onChange){var productAttributeID = productAttribute.PRODUCTATTRIBUTEID;var $attributeOptionList = jQuery(this.container).find("#attributeOptionList_" + productAttributeID);//if the rest of the options need to be rendered then do so.$attributeOptionList.data("expanded", true);if ($attributeOptionList.data("rendered") === false){var numberOfItemsBeforeExpanding = 4;var checkedOption = jQuery(this.container).find("[name='ProductAttributeOptionIDs_" + productAttributeID + "']:checked");var selectedValue = checkedOption.val();//remove hidden selected option since we will now show itjQuery("[name='ProductAttributeOptionIDs_" + productAttributeID + "'].hiddenSelectedValue").remove();var strHtml = "";for (var i = numberOfItemsBeforeExpanding; i < productAttribute.OPTIONS.length; i++){strHtml += this.createImageAttributeOption(productAttributeID, productAttribute.OPTIONS[i], true);}$attributeOptionList.append(strHtml);$attributeOptionList.find(".lazyLoadedOption input[type='radio']").change(function(){onChange(productAttributeID, jQuery(this).val());});if (selectedValue != ""){var strSelector = "[data-productattributeid='" + productAttribute.PRODUCTATTRIBUTEID + "'] input[type='radio'][value='" + selectedValue + "'].attributeoption";jQuery(this.container).find(strSelector).attr("checked", "checked").trigger("change");}jQuery(this.container).find("#attributeOptionList_" + productAttributeID + " .hideUnlessExpanded").hide();this.renderAttributeOptionImagesSlowly(productAttributeID);this.addAttributeOptionTooltips(productAttributeID, true);$attributeOptionList.data("rendered", true);}else{jQuery(this.container).find("#attributeOptionList_" + productAttributeID + " .hideUnlessExpanded").show();jQuery(this.container).find(".hideMoreAttributeOptions[data-attributeid='" + productAttributeID + "']").show();}jQuery(this.container).find(".viewMoreAttributeOptions[data-attributeid='" + productAttributeID + "']").hide();}//the purpose of this function, is to disallow showing attribute images before they are loaded//assuming we have a lot of options, with images that take a while to load.AddToCartListView.prototype.renderAttributeOptionImagesSlowly = function(productAttributeID){jQuery(this.container).find("[data-attributeid='" + productAttributeID + "'].spinner-loader-wrapper").show();if(typeof this.numImagesToWait == "undefined"){this.numImagesToWait = {};}if(typeof numImagesLoaded == "undefined"){this.numImagesLoaded = {};}var numImagesBeforeExpanding = 4;//find out how many images are waiting for loading for this product attributevar v = this;jQuery(document).ready(function(){var attributeLoaderIdentified = "p_" + productAttributeID;v.numImagesToWait[attributeLoaderIdentified] = jQuery(v.container).find("#attributeOptionList_" + productAttributeID + " img.track-loading").length;v.numImagesLoaded[attributeLoaderIdentified] = numImagesBeforeExpanding;if (v.numImagesToWait[attributeLoaderIdentified] == 0){//once the images we are waiting for are loaded//(except for the tooltip ones, lets not wait for those as well).//then hide the overlay and show the images.jQuery(v.container).find("#attributeOptionList_" + productAttributeID + " .hideUnlessExpanded").show();jQuery(".hideMoreAttributeOptions[data-attributeid='" + productAttributeID + "']").show();}jQuery(v.container).find("#attributeOptionList_" + productAttributeID + " img.track-loading").on("load",function(){//decrement the number of images we are waiting for loading.v.numImagesToWait[attributeLoaderIdentified]--;v.numImagesLoaded[attributeLoaderIdentified]++;if (v.numImagesToWait[attributeLoaderIdentified] == 0){//once the images we are waiting for are loaded//(except for the tooltip ones, lets not wait for those as well).//then hide the overlay and show the images.jQuery(v.container).find("#attributeOptionList_" + productAttributeID + " .hideUnlessExpanded").show();jQuery("[data-attributeID='" + productAttributeID + "'].spinner-loader-wrapper").hide();jQuery(".hideMoreAttributeOptions[data-attributeid='" + productAttributeID + "']").show();}//if a couple of rows managed to load, then show themelse if (v.numImagesLoaded[attributeLoaderIdentified] > numImagesBeforeExpanding&& v.numImagesLoaded[attributeLoaderIdentified] % (v.getAttributeOptionsPerRow() * 2) == 0){var startIndex = 0;var endIndex = v.numImagesLoaded[attributeLoaderIdentified] - v.getAttributeOptionsPerRow();jQuery(v.container).find("#attributeOptionList_" + productAttributeID + " .hideUnlessExpanded").slice(startIndex, endIndex).slideDown();}});});}//calculate how many children can fit per row.AddToCartListView.prototype.getAttributeOptionsPerRow = function(){if(!this.optionListTrimmed){var oneItemWidth = 0;var containerWidth = 0;if (typeof childrenPerRowOfOptionImages == "undefined"){//calculate how many attribute option images, can fit in a row, hide the rest.jQuery(this.container).find(".attributeSelectionWithImages ul").each(function(){if (jQuery(this).find("li").length > 1){//show just the first two, in order to be able to make calculations!jQuery(this).find("li:first").show();jQuery(this).find("li:eq(1)").show();firstChild = jQuery(this).find("li")[0];secondChild = jQuery(this).find("li")[1];containerWidth = jQuery(this).width();oneItemWidth = secondChild.offsetLeft - firstChild.offsetLeft;if (oneItemWidth == 0){oneItemWidth = jQuery(this).find("li:first").outerWidth(true);}return false;}});if (oneItemWidth > 0){var childrenPerRow = Math.floor(containerWidth / oneItemWidth);childrenPerRowOfOptionImages = childrenPerRow;}}if (typeof childrenPerRowOfOptionImages != "undefined"){//now that we know how many children can fit, hide the rest.jQuery(this.container).find(".attributeSelectionWithImages ul").each(function(){numberOfRows = 1;numberOfVisibleItems = childrenPerRowOfOptionImages * numberOfRows;jQuery(this).children("li").removeClass("hideUnlessExpanded");//add class hide unless expanded, to children under the first rowjQuery(this).children("li:gt(" + (numberOfVisibleItems - 1) + ")").addClass("hideUnlessExpanded");$loadedAttributeOptions = jQuery(this).children("li");$loadedAttributeOptions.show();blnShowExpandToggle = numberOfVisibleItems < jQuery(this).data("totaloptions");if ($loadedAttributeOptions.length < jQuery(this).data("totaloptions")){blnShowExpandToggle = true;}if (blnShowExpandToggle){if (jQuery(this).data("expanded")){jQuery(".viewMoreAttributeOptions[data-attributeid='" + jQuery(this).data("productattributeid") + "']").hide();jQuery(".hideMoreAttributeOptions[data-attributeid='" + jQuery(this).data("productattributeid") + "']").show();} else {//if this was not previously expanded and now it has been resized, hide all the hidden items, and shoe the view more option$loadedAttributeOptions.filter(".hideUnlessExpanded").hide();jQuery(".viewMoreAttributeOptions[data-attributeid='" + jQuery(this).data("productattributeid") + "']").show();jQuery(".hideMoreAttributeOptions[data-attributeid='" + jQuery(this).data("productattributeid") + "']").hide();}} else {//if all options can fit into the collapsed rows, then just hide the viewmore/hide options and just show everythingjQuery(".viewMoreAttributeOptions[data-attributeid='" + jQuery(this).data("productattributeid") + "']").hide();jQuery(".hideMoreAttributeOptions[data-attributeid='" + jQuery(this).data("productattributeid") + "']").hide();}});this.optionListTrimmed = true;return childrenPerRowOfOptionImages;}else{jQuery(this.container).find(".viewMoreAttributeOptions").hide();jQuery(this.container).find(".hideMoreAttributeOptions").hide();jQuery(this.container).find(".attributeSelectionWithImages ul li").show();}}else{return childrenPerRowOfOptionImages;}}//Collapse attribute optionsAddToCartListView.prototype.hideMoreAttributeOptions = function(productAttribute){var productAttributeID = productAttribute.PRODUCTATTRIBUTEID;jQuery(this.container).find("#attributeOptionList_" + productAttributeID).data("expanded", false);jQuery(this.container).find("#attributeOptionList_" + productAttributeID + " .hideUnlessExpanded").hide();jQuery(this.container).find(".viewMoreAttributeOptions[data-attributeid='" + productAttributeID + "']").show();jQuery(this.container).find(".hideMoreAttributeOptions[data-attributeid='" + productAttributeID + "']").hide();}//create single line text attributeAddToCartListView.prototype.createSingleLineTextAttribute = function(productAttribute){var strHtml = '

    ';strHtml+= '

    ';strHtml+= '';strHtml+= '';strHtml+= '

    ';jQuery(strHtml).appendTo(jQuery(this.container).find(".product-attributes-list-view"));}//create state and country dropdownsAddToCartListView.prototype.createCountryDropdown = function(productAttribute, countries){this.createAttributeDropdown(productAttribute, countries);}AddToCartListView.prototype.createStateDropdown = function(productAttribute, states){this.createAttributeDropdown(productAttribute, states);}AddToCartListView.prototype.createAttributeDropdown = function(productAttribute, options){var strRequiredClass = "";if(productAttribute.ISREQUIRED){strRequiredClass = " attributeSelectionLabelRequired";}var strHtml = '

    'strHtml += '';strHtml += '';strHtml += '

    ';jQuery(strHtml).appendTo(jQuery(this.container).find(".product-attributes-list-view"));}//create text area attributeAddToCartListView.prototype.createTextAreaAttribute = function(productAttribute){var strRequiredClass = "";if(productAttribute.ISREQUIRED){strRequiredClass = " attributeSelectionLabelRequired";}var strHtml = '

    ';strHtml += '';strHtml += '';strHtml += '

    ';jQuery(strHtml).appendTo(jQuery(this.container).find(".product-attributes-list-view"));}//create date attributeAddToCartListView.prototype.createDateAttribute = function(productAttribute){var strRequiredClass = "";if(productAttribute.ISREQUIRED){strRequiredClass = " attributeSelectionLabelRequired";}var strHtml = '

    ';strHtml += '';strHtml += '';strHtml += '

    ';strHtml += "'%name%' must be a valid date, format yyyy-mm-dd.".replace("%name%", productAttribute.Name);strHtml += '

    ';strHtml += '

    ';jQuery(strHtml).appendTo(jQuery(this.container).find(".product-attributes-list-view"));jQuery(this.container).find(".attribute-datepicker").datepicker({dateFormat: 'yy-mm-dd',showOn: "both",buttonImage: "/core/public/shared/assets/images/calendar.gif",buttonImageOnly: true,buttonText: 'Click for Calendar',changeMonth: true,yearRange: "-100:+25",changeYear: true});}//create file upload attributeAddToCartListView.prototype.createFileUploadAttribute = function(productAttribute){var strHtml = '

    ';strHtml += '

    ';strHtml += '';strHtml += '';strHtml += '

    ';strHtml += '

    ';strHtml += 'Accepted Formats: ' + productAttribute.ACCEPTEDFORMATS;strHtml += '

    ';if (productAttribute.SPECIALINSTRUCTIONS != ''){strHtml += '

    ' + productAttribute.SPECIALINSTRUCTIONS + '

    ';}strHtml += '

    ';jQuery(strHtml).appendTo(jQuery(this.container).find(".product-attributes-list-view"));}//update variant nameAddToCartListView.prototype.setVariantName = function(name){jQuery(this.container).find("#variant-name").html(name);}AddToCartListView.prototype.formatPrice = function(price){return "€" + price.toFixed(2);}AddToCartListView.prototype.updatePrice = function(prices, priceTiers, hasPrice, rangePriceStart, rangePriceEnd){//update the item pricevar strHtml = '';if (typeof priceTiers.FLTCROSSEDOUTPRICE != "undefined" ){strHtml += '

    ' + this.formatPrice(priceTiers.ARYTIERS[0].value) + '

    ';strHtml += '

    ' + this.formatPrice(priceTiers.FLTCROSSEDOUTPRICE) + '

    ';}else if (typeof rangePriceStart != 'undefined'&& rangePriceStart != ''&& typeof rangePriceEnd != 'undefined'&& rangePriceEnd != ''){strHtml += '' + this.formatPrice(rangePriceStart) + ' - ' + this.formatPrice(rangePriceEnd) + '';}else if (hasPrice){strHtml += '' + this.formatPrice(priceTiers.ARYTIERS[0].value) + '';}jQuery(this.container).find(".item-prices").html(strHtml);}AddToCartListView.prototype.hideItemPrice = function(){//don't hide anything show the range insteadreturn;}AddToCartListView.prototype.getUseRewardPoints = function(){return jQuery(this.container).find("input[ name='PurchaseWithPoints' ]:checked").val();}AddToCartListView.prototype.updateRewardPoints = function(points, pointsAtDefaultQuantity, hasPrice){//update the item pointsif ( pointsAtDefaultQuantity != '' ){var strHtml = ''if (hasPrice){strHtml += ' or ';}strHtml += pointsAtDefaultQuantitystrHtml += ' points'strHtml += '';jQuery(this.container).find(".item-prices").append(strHtml);}}AddToCartListView.prototype.updateSKUNumber = function(skunumber){return;}//update view based on new price(if we changed to a variant), images etc.AddToCartListView.prototype.updatePicturesView = function(productImages){var strImages = "";if (productImages.length){var productImage = productImages[0];var imagePath = '/media/products/' + productImage.IMAGE;// Set up the html inside the slidervar $img = jQuery(this.container).find(".item-image img");$img.attr("src", imagePath + '?dimensions=' + productImage.LargeDimensions);$img.attr("alt", productImage.IMAGEALTTEXT);$img.attr("title", productImage.IMAGEALTTEXT);}}//set subtotal on the view, after calculationsAddToCartListView.prototype.setSubtotalRow = function(subtotal, pointsSubtotal, hasPrice, includeRewardPointsSelect, hasRewardPoints){var strPrice = subtotal;if (includeRewardPointsSelect){var strPoints = pointsSubtotal;var strHtml = '

    ';strHtml += '

    Subtotal

    ';strHtml += '

    ';strHtml += '

    ';strHtml += '

    ';strHtml += '

    ';strHtml += '

    ';jQuery(this.container).find(".subtotal_row").html(strHtml);}else{var strHtml = '

    Subtotal

    ' + strPrice + ''jQuery(this.container).find(".subtotal_row").html(strHtml);}}AddToCartListView.prototype.hideSubtotalRow = function(){jQuery(this.container).find(".subtotal_row").hide();}AddToCartListView.prototype.showSubtotalRow = function(){jQuery(this.container).find(".subtotal_row").show();}//create add to cart buttonAddToCartListView.prototype.createAddToCartButton = function(onClick){var strHtml = '

    ';strHtml+= '';strHtml+= '';strHtml+= '

    ';jQuery(strHtml).appendTo(jQuery(this.container).find(".add-to-cart-list-view"))jQuery(this.container).find("button[name='SubmitButton'][value='btn-add-to-cart']").click(function(){onClick("btn-add-to-cart");});jQuery(this.container).find("button[name='SubmitButton'][value='btn-wishlist']").click(function(){onClick("btn-wishlist");});}AddToCartListView.prototype.enableAddToCartButton = function(onClick){jQuery(this.container).find("#AddToCartButtonContainer button").prop("disabled", false);}AddToCartListView.prototype.disableAddToCartButton = function(onClick){jQuery(this.container).find("#AddToCartButtonContainer button").prop("disabled", true);}AddToCartListView.prototype.showAddToCartButton = function(onClick){jQuery(this.container).find("#AddToCartButtonContainer").show();}AddToCartListView.prototype.hideAddToCartButton = function(onClick){jQuery(this.container).find("#AddToCartButtonContainer").hide();}AddToCartListView.prototype.showAddedToCartMessage = function(){var strHtml = '

    Added To Cart

    ';jQuery(this.container).find("#AddToCart").hide();jQuery(strHtml).appendTo(jQuery(this.container).find(".add-to-cart-list-view"));}//create preorder buttonAddToCartListView.prototype.createPreOrderButton = function(onClick, PreorderAvailabilityMessage){var strHtml = '

    ';strHtml+= '';strHtml+= '';strHtml+= '

    ';jQuery(strHtml).appendTo(jQuery(this.container).find(".add-to-cart-list-view"))jQuery(this.container).find("button[name='SubmitButton'][value='btn-add-to-cart']").click(function(){onClick("btn-add-to-cart");});jQuery(this.container).find("button[name='SubmitButton'][value='btn-wishlist']").click(function(){onClick("btn-wishlist");});}//createSubtotalRowAddToCartListView.prototype.createSubtotalRow = function(){}//create wishlist buttonAddToCartListView.prototype.createWishlistButton = function(){// moved this to "createAddToCartButton", due to design constraints}AddToCartListView.prototype.showWishlistButton = function(){jQuery(this.container).find("#WishListButtonContainer").show();}AddToCartListView.prototype.hideWishlistButton = function(){jQuery(this.container).find("#WishListButtonContainer").hide();}//create view wishlist linkAddToCartListView.prototype.createViewWishlistLink = function(){return;}//create favorites buttonAddToCartListView.prototype.createFavoritesButton = function(){return;}AddToCartListView.prototype.showFavoritesButton = function(){}AddToCartListView.prototype.hideFavoritesButton = function(){}//create view favorites linkAddToCartListView.prototype.createViewFavoritesLink = function(){return;}//create out of stock messageAddToCartListView.prototype.createOutOfStockMessage = function() {var strHtml = '

    ';strHtml+= '';strHtml+= '

    Out of stock

    ';strHtml+= '

    ';jQuery(strHtml).appendTo(jQuery(this.container).find(".add-to-cart-list-view"));jQuery(this.container).find("button[name='SubmitButton'][value='btn-wishlist']").click(function(){onClick("btn-wishlist");});}AddToCartListView.prototype.showOutOfStockMessage = function() {jQuery(this.container).find("#OutOfStockContainer").show();}AddToCartListView.prototype.hideOutOfStockMessage = function() {jQuery(this.container).find("#OutOfStockContainer").hide();}//Create availability informationAddToCartListView.prototype.createAvailabilityInformation = function(showOnlineAvailability, isAvailableOnline, onlineAvailabilityMessage, showStoreAvailability, isAvailableInStore, storeAvailabilityMessage){var strHtml = '';if (showOnlineAvailability || showStoreAvailability){strHtml += '

    ';}if (showOnlineAvailability){strHtml += '' + onlineAvailabilityMessage + '
    ';}if (showStoreAvailability){strHtml += '' + storeAvailabilityMessage + '
    ';}if (showOnlineAvailability || showStoreAvailability){strHtml += '

    ';}jQuery(strHtml).appendTo(jQuery(this.container).find(".add-to-cart-list-view"));}//create product installation fees informationAddToCartListView.prototype.createProductInstallationFeesInfo = function() {var fullScope = this;var strHtml = '

    This product has installation fees

    ';jQuery(strHtml).appendTo(this.container.find(".submit_row"));}//show combination is invalid messageAddToCartListView.prototype.showCombinationIsInvalid = function() {jQuery(this.container).find(".not-available-combination").show();}AddToCartListView.prototype.hideCombinationIsInvalid = function() {jQuery(this.container).find(".not-available-combination").hide();}AddToCartListView.prototype.showMessages = function( messages){alert(messages.join('\n'));}AddToCartListView.prototype.showGiftsMessage = function(strGiftsMessage, strProductDetailsURL) {if (strGiftsMessage.length){var strHtml = '';strHtml += '

    ';strHtml += '';strHtml += '

    ';strHtml += '

    ' + strGiftsMessage + '

    ';strHtml += '';strHtml += '

    ';strHtml += '

    ';jQuery(this.container).find(".new-present-div-2").append(strHtml);}}AddToCartListView.prototype.showMTNPlan = function(strMTNPlan, strProductDetailsURL) {/*if (strMTNPlan.length){var strHtml = '';strHtml += '

    ';strHtml += '';strHtml += '';strHtml += '' + strMTNPlan + '';strHtml += '';strHtml += '

    ';jQuery(this.container).find(".mtn-plan").append(strHtml);}*/}AddToCartListView.prototype.showSpecs = function(strSpecs) {if (strSpecs.length){jQuery(this.container).find(".spotlight-list-text.specs").append(strSpecs);}}

    Until 02/06/2024

    TV 75" TESLA Series 6 75S635BUS 4K UHD LED Smart Google TV black

    TV.01529

    Availability

    €698.99

    €799.00

    Until 02/06/2024

    TV 70" SHARP 70FN2EA 4K UHD LED Smart Android

    TV.01518

    Availability

    €548.99

    €629.00

    Until 02/06/2024

    TV 65" LG 65UR73003 4K UHD LED Smart

    TV.01531

    Availability

    €548.99

    €599.00

    Until 02/06/2024

    TV 65" KIVI 65U740NB 4K UHD LED Smart Android black

    TV.01547

    Availability

    €469.00

    €499.00

    Until 02/06/2024

    TV 55" SHARP 55GL4260E 4K UHD LED Smart Android

    TV.01519

    Availability

    €379.00

    €429.00

    Until 02/06/2024

    TV 55" SHARP 4T-C55FK2EL2NB 4K UHD LED Smart

    TV.01510

    Availability

    €339.00

    €379.00

    Until 02/06/2024

    TV 43" LG 43UR73003LA 4K UHD LED Smart

    TV.01417

    Availability

    €349.00

    €369.00

    Until 02/06/2024

    TV 40" SHARP 40FG2EA FHD LED Smart Android TV black

    TV.01517

    Availability

    €199.00

    €249.00

    Until 02/06/2024

    TV 40" TESLA Series 6 40E635BFS FHD LED Smart Android

    TV.01469

    Availability

    €199.00

    €229.00

    Until 02/06/2024

    TV 32" TESLA Series 3 32E325BH HD Ready LED black

    TV.01330

    Availability

    €99.00

    €119.00

    View All

    ', '

    '],mouseDrag: false,touchDrag: true,pullDrag: false,dots: false,responsive:{0: {items: 1},768: {items: 2},992: {items: 3},1200: {items: 5}}});});

    \n\t\t\t\t\t\n\t\t\t\t\t\t

    €799.00

    \n\t\t\t\t\t","PREORDERENDDATE":"","MAXIMUMORDERQUANTITYDESCRIPTION":"Maximum of 0","ISAVAILABLEONLINE":1,"CARDHOLDERPRICE":775.0,"RIBBONDATETO":"June, 01 2024 16:00:00","MAXIMUMORDERQUANTITY":"","productAttributes":[],"AFFILIATEURL":"","STRGIFTSMESSAGE":"","quantityLabel":"Quantity","HEIGHT":"","SHOWQUANTITYAVAILABLE":false,"BACKORDERTYPE":2,"SHOWVIEWFAVORITES":false,"QUANTITYAVAILABLE":38.0,"HASMINIMUMORDERQUANTITY":false,"HSCODE":"","MINIMUMORDERQUANTITY":"","USEATTRIBUTEGRID":false,"HASMAXIMUMORDERQUANTITY":false,"PRICETIERS":{"BLNHASOVERRIDDENCUSTOMERSPECIFICPRICING":false,"FLTCROSSEDOUTPRICE":799.0,"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":698.99}],"INTPROMOTIONID":35275}});objProductList.renderAddToCartInfo({"SELECTEDQUANTITY":1.0,"PREORDERDOWNPAYMENTAMOUNT":0.0,"PRODUCTCATEGORYID":"","SKUNUMBER":"TV.01518","PRODUCTQUANTITYUNITFRACTION":1.0,"HASATTRIBUTEGRID":false,"QUANTITY":1.0,"ALIAS":390688,"RELEASEDATE":"","ISGIFTCARD":false,"UPC":"","PRODUCTIMAGES":[{"PRODUCTID":120725,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":185383,"NAME":"TV_FF253CEE0C13E.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_FF253CEE0C13E.jpg","IMAGEALTTEXT":"","ORDERNUMBER":1,"DATEMODIFIED":"December, 06 2023 06:12:38","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"December, 06 2023 06:12:00"},{"PRODUCTID":120725,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":185382,"NAME":"TV_6271CB9D088AF.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_6271CB9D088AF.jpg","IMAGEALTTEXT":"","ORDERNUMBER":2,"DATEMODIFIED":"December, 06 2023 06:12:38","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"December, 06 2023 06:12:00"},{"PRODUCTID":120725,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":185381,"NAME":"TV_D2A5CD0268D08.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_D2A5CD0268D08.jpg","IMAGEALTTEXT":"","ORDERNUMBER":3,"DATEMODIFIED":"December, 06 2023 06:12:38","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"December, 06 2023 06:11:59"},{"PRODUCTID":120725,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":185380,"NAME":"TV_0D34CB5C86C0A.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_0D34CB5C86C0A.jpg","IMAGEALTTEXT":"","ORDERNUMBER":4,"DATEMODIFIED":"December, 06 2023 06:12:38","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"December, 06 2023 06:11:59"}],"HASRELEASEDATE":false,"ISFAVORITESENABLED":0.0,"PRODUCTATTRIBUTEGRIDATTRIBUTES":"","ISWISHLISTENABLED":1,"STRMTNPLAN":"","PREORDERPRICE":0.0,"RIBBONIMAGE":"","BLNENABLEADDTOCARTPOPUP":true,"PURCHASEALLOWED":1,"CUSTOMER":{"ISALLOWEDTOPURCHASE":true},"POINTS":"","WEIGHT":0.1,"CURRENTPRODUCTINDEX":0,"STOREAVAILABILITYMESSAGE":"","POINTSTIERS":{"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":0.0}]},"BRANDLOGO":"","ISAVAILABLEFORPURCHASE":1,"SUBMITFORMWITHAJAX":false,"ISDIGITALPRODUCT":false,"ENABLEREWARDPOINTS":false,"ISAGERESTRICTED":false,"NAME":"TV 70" SHARP 70FN2EA 4K UHD LED Smart Android","BRAND":"SHARP","ADDTOCARTUSINGAJAXHANDLER":"handleAddToCart","SHOWVIEWWISHLIST":false,"HASINSTALLATIONFEES":false,"ISUSERLOGGEDIN":false,"STRSPECS":"70\" | 4K UHD | Active Motion 800 | Supports Smart TV | Android 11 | LED | Harman-Kardon speaker system, Chromecast","PROMOTIONID":"","MSRP":"","AVAILABLEVARIANTS":[],"QUANTITYAVAILABLELABEL":"Quantity Available","LENGTH":"","PURCHASEDINMULTIPLESOF":1,"ISPREORDER":0,"WIDTH":"","PRODUCTID":120725,"PAGEID":2.0,"AVAILABLEINSTORE":"na","PREVIOUSPRICE":629.0,"ONLINEAVAILABILITYMESSAGE":"","MINIMUMORDERQUANTITYDESCRIPTION":"Minimum of 0","ISINVENTORYTRACKINGENABLED":true,"BRANDLOGODIMENSIONS":"","PRICES":"\n\t\t\t\t\t

    €548.99

    \n\t\t\t\t\t\n\t\t\t\t\t\t

    €629.00

    \n\t\t\t\t\t","PREORDERENDDATE":"","MAXIMUMORDERQUANTITYDESCRIPTION":"Maximum of 0","ISAVAILABLEONLINE":1,"CARDHOLDERPRICE":599.0,"RIBBONDATETO":"June, 01 2024 16:00:00","MAXIMUMORDERQUANTITY":"","productAttributes":[],"AFFILIATEURL":"","STRGIFTSMESSAGE":"","quantityLabel":"Quantity","HEIGHT":"","SHOWQUANTITYAVAILABLE":false,"BACKORDERTYPE":2,"SHOWVIEWFAVORITES":false,"QUANTITYAVAILABLE":74.0,"HASMINIMUMORDERQUANTITY":false,"HSCODE":"","MINIMUMORDERQUANTITY":"","USEATTRIBUTEGRID":false,"HASMAXIMUMORDERQUANTITY":false,"PRICETIERS":{"BLNHASOVERRIDDENCUSTOMERSPECIFICPRICING":false,"FLTCROSSEDOUTPRICE":629.0,"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":548.99}],"INTPROMOTIONID":35284}});objProductList.renderAddToCartInfo({"SELECTEDQUANTITY":1.0,"PREORDERDOWNPAYMENTAMOUNT":0.0,"PRODUCTCATEGORYID":"","SKUNUMBER":"TV.01531","PRODUCTQUANTITYUNITFRACTION":1.0,"HASATTRIBUTEGRID":false,"QUANTITY":1.0,"ALIAS":391924,"RELEASEDATE":"","ISGIFTCARD":false,"UPC":"","PRODUCTIMAGES":[{"PRODUCTID":121704,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":187747,"NAME":"TV_20B4F0CA5CB1A.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_20B4F0CA5CB1A.jpg","IMAGEALTTEXT":"","ORDERNUMBER":1,"DATEMODIFIED":"January, 16 2024 04:44:01","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"January, 16 2024 04:43:55"},{"PRODUCTID":121704,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":187746,"NAME":"TV_0C835C38B3278.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_0C835C38B3278.jpg","IMAGEALTTEXT":"","ORDERNUMBER":2,"DATEMODIFIED":"January, 16 2024 04:44:01","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"January, 16 2024 04:43:55"},{"PRODUCTID":121704,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":187745,"NAME":"TV_221AD90999666.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_221AD90999666.jpg","IMAGEALTTEXT":"","ORDERNUMBER":3,"DATEMODIFIED":"January, 16 2024 04:44:01","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"January, 16 2024 04:43:55"}],"HASRELEASEDATE":false,"ISFAVORITESENABLED":0.0,"PRODUCTATTRIBUTEGRIDATTRIBUTES":"","ISWISHLISTENABLED":1,"STRMTNPLAN":"","PREORDERPRICE":0.0,"RIBBONIMAGE":"","BLNENABLEADDTOCARTPOPUP":true,"PURCHASEALLOWED":1,"CUSTOMER":{"ISALLOWEDTOPURCHASE":true},"POINTS":"","WEIGHT":0.1,"CURRENTPRODUCTINDEX":0,"STOREAVAILABILITYMESSAGE":"","POINTSTIERS":{"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":0.0}]},"BRANDLOGO":"","ISAVAILABLEFORPURCHASE":1,"SUBMITFORMWITHAJAX":false,"ISDIGITALPRODUCT":false,"ENABLEREWARDPOINTS":false,"ISAGERESTRICTED":false,"NAME":"TV 65" LG 65UR73003 4K UHD LED Smart","BRAND":"LG","ADDTOCARTUSINGAJAXHANDLER":"handleAddToCart","SHOWVIEWWISHLIST":false,"HASINSTALLATIONFEES":false,"ISUSERLOGGEDIN":false,"STRSPECS":"65\" | 4K UHD | 50Hz | Supports Smart Tv | WebOs 23 | Direct LED | α5 4K Gen6 AI | AI, LG ThinQ, Game optimizer","PROMOTIONID":"","MSRP":"","AVAILABLEVARIANTS":[],"QUANTITYAVAILABLELABEL":"Quantity Available","LENGTH":"","PURCHASEDINMULTIPLESOF":1,"ISPREORDER":0,"WIDTH":"","PRODUCTID":121704,"PAGEID":2.0,"AVAILABLEINSTORE":"na","PREVIOUSPRICE":599.0,"ONLINEAVAILABILITYMESSAGE":"","MINIMUMORDERQUANTITYDESCRIPTION":"Minimum of 0","ISINVENTORYTRACKINGENABLED":true,"BRANDLOGODIMENSIONS":"","PRICES":"\n\t\t\t\t\t

    €548.99

    \n\t\t\t\t\t\n\t\t\t\t\t\t

    €599.00

    \n\t\t\t\t\t","PREORDERENDDATE":"","MAXIMUMORDERQUANTITYDESCRIPTION":"Maximum of 0","ISAVAILABLEONLINE":1,"CARDHOLDERPRICE":589.0,"RIBBONDATETO":"June, 01 2024 16:00:00","MAXIMUMORDERQUANTITY":"","productAttributes":[],"AFFILIATEURL":"","STRGIFTSMESSAGE":"","quantityLabel":"Quantity","HEIGHT":"","SHOWQUANTITYAVAILABLE":false,"BACKORDERTYPE":2,"SHOWVIEWFAVORITES":false,"QUANTITYAVAILABLE":64.0,"HASMINIMUMORDERQUANTITY":false,"HSCODE":"","MINIMUMORDERQUANTITY":"","USEATTRIBUTEGRID":false,"HASMAXIMUMORDERQUANTITY":false,"PRICETIERS":{"BLNHASOVERRIDDENCUSTOMERSPECIFICPRICING":false,"FLTCROSSEDOUTPRICE":599.0,"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":548.99}],"INTPROMOTIONID":35273}});objProductList.renderAddToCartInfo({"SELECTEDQUANTITY":1.0,"PREORDERDOWNPAYMENTAMOUNT":0.0,"PRODUCTCATEGORYID":"","SKUNUMBER":"TV.01547","PRODUCTQUANTITYUNITFRACTION":1.0,"HASATTRIBUTEGRID":false,"QUANTITY":1.0,"ALIAS":392431,"RELEASEDATE":"","ISGIFTCARD":false,"UPC":"","PRODUCTIMAGES":[{"PRODUCTID":120437,"ISACTIVE":1,"ColorboxDimensions":"800x800","PRODUCTIMAGEID":189593,"NAME":"TV_BB1129B6FE208.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_BB1129B6FE208.jpg","IMAGEALTTEXT":"","ORDERNUMBER":4,"DATEMODIFIED":"February, 16 2024 07:22:28","IMAGEDIMENSIONS":"800x800","LargeDimensions":"500x500","DATECREATED":"February, 16 2024 07:22:21"},{"PRODUCTID":120437,"ISACTIVE":1,"ColorboxDimensions":"800x800","PRODUCTIMAGEID":189592,"NAME":"TV_B7CFA759D114F.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_B7CFA759D114F.jpg","IMAGEALTTEXT":"","ORDERNUMBER":5,"DATEMODIFIED":"February, 16 2024 07:22:28","IMAGEDIMENSIONS":"800x800","LargeDimensions":"500x500","DATECREATED":"February, 16 2024 07:22:21"},{"PRODUCTID":120437,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":184664,"NAME":"TV_A9C40BACD7971.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_A9C40BACD7971.jpg","IMAGEALTTEXT":"","ORDERNUMBER":6,"DATEMODIFIED":"February, 16 2024 07:22:28","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"November, 23 2023 08:01:46"},{"PRODUCTID":120437,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":184665,"NAME":"TV_67480F1BC78D0.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_67480F1BC78D0.jpg","IMAGEALTTEXT":"","ORDERNUMBER":7,"DATEMODIFIED":"February, 16 2024 07:22:28","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"November, 23 2023 08:01:46"}],"HASRELEASEDATE":false,"ISFAVORITESENABLED":0.0,"PRODUCTATTRIBUTEGRIDATTRIBUTES":"","ISWISHLISTENABLED":1,"STRMTNPLAN":"","PREORDERPRICE":0.0,"RIBBONIMAGE":"","BLNENABLEADDTOCARTPOPUP":true,"PURCHASEALLOWED":1,"CUSTOMER":{"ISALLOWEDTOPURCHASE":true},"POINTS":"","WEIGHT":0.1,"CURRENTPRODUCTINDEX":0,"STOREAVAILABILITYMESSAGE":"","POINTSTIERS":{"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":0.0}]},"BRANDLOGO":"","ISAVAILABLEFORPURCHASE":1,"SUBMITFORMWITHAJAX":false,"ISDIGITALPRODUCT":false,"ENABLEREWARDPOINTS":false,"ISAGERESTRICTED":false,"NAME":"TV 65" KIVI 65U740NB 4K UHD LED Smart Android black","BRAND":"KIVI","ADDTOCARTUSINGAJAXHANDLER":"handleAddToCart","SHOWVIEWWISHLIST":false,"HASINSTALLATIONFEES":false,"ISUSERLOGGEDIN":false,"STRSPECS":"65\" | 4K UHD | Up to 60Hz | Supports Smart TV | Android TV 9 | Direct LED | Quad-core | Google Assistant, Chromecast","PROMOTIONID":"","MSRP":"","AVAILABLEVARIANTS":[],"QUANTITYAVAILABLELABEL":"Quantity Available","LENGTH":"","PURCHASEDINMULTIPLESOF":1,"ISPREORDER":0,"WIDTH":"","PRODUCTID":120437,"PAGEID":2.0,"AVAILABLEINSTORE":"na","PREVIOUSPRICE":499.0,"ONLINEAVAILABILITYMESSAGE":"","MINIMUMORDERQUANTITYDESCRIPTION":"Minimum of 0","ISINVENTORYTRACKINGENABLED":true,"BRANDLOGODIMENSIONS":"","PRICES":"\n\t\t\t\t\t

    €469.00

    \n\t\t\t\t\t\n\t\t\t\t\t\t

    €499.00

    \n\t\t\t\t\t","PREORDERENDDATE":"","MAXIMUMORDERQUANTITYDESCRIPTION":"Maximum of 0","ISAVAILABLEONLINE":1,"CARDHOLDERPRICE":485.0,"RIBBONDATETO":"June, 01 2024 16:00:00","MAXIMUMORDERQUANTITY":"","productAttributes":[],"AFFILIATEURL":"","STRGIFTSMESSAGE":"","quantityLabel":"Quantity","HEIGHT":"","SHOWQUANTITYAVAILABLE":false,"BACKORDERTYPE":2,"SHOWVIEWFAVORITES":false,"QUANTITYAVAILABLE":48.0,"HASMINIMUMORDERQUANTITY":false,"HSCODE":"","MINIMUMORDERQUANTITY":"","USEATTRIBUTEGRID":false,"HASMAXIMUMORDERQUANTITY":false,"PRICETIERS":{"BLNHASOVERRIDDENCUSTOMERSPECIFICPRICING":false,"FLTCROSSEDOUTPRICE":499.0,"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":469.0}],"INTPROMOTIONID":35263}});objProductList.renderAddToCartInfo({"SELECTEDQUANTITY":1.0,"PREORDERDOWNPAYMENTAMOUNT":0.0,"PRODUCTCATEGORYID":"","SKUNUMBER":"TV.01519","PRODUCTQUANTITYUNITFRACTION":1.0,"HASATTRIBUTEGRID":false,"QUANTITY":1.0,"ALIAS":390689,"RELEASEDATE":"","ISGIFTCARD":false,"UPC":"","PRODUCTIMAGES":[{"PRODUCTID":120726,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":185379,"NAME":"TV_F29F9057DA105.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_F29F9057DA105.jpg","IMAGEALTTEXT":"","ORDERNUMBER":1,"DATEMODIFIED":"December, 06 2023 06:12:28","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"December, 06 2023 06:11:46"},{"PRODUCTID":120726,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":185378,"NAME":"TV_8597AD39CD848.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_8597AD39CD848.jpg","IMAGEALTTEXT":"","ORDERNUMBER":2,"DATEMODIFIED":"December, 06 2023 06:12:28","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"December, 06 2023 06:11:45"},{"PRODUCTID":120726,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":185377,"NAME":"TV_A81B8507A82FD.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_A81B8507A82FD.jpg","IMAGEALTTEXT":"","ORDERNUMBER":3,"DATEMODIFIED":"December, 06 2023 06:12:28","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"December, 06 2023 06:11:45"},{"PRODUCTID":120726,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":185376,"NAME":"TV_ED976BEE0EC23.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_ED976BEE0EC23.jpg","IMAGEALTTEXT":"","ORDERNUMBER":4,"DATEMODIFIED":"December, 06 2023 06:12:28","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"December, 06 2023 06:11:45"}],"HASRELEASEDATE":false,"ISFAVORITESENABLED":0.0,"PRODUCTATTRIBUTEGRIDATTRIBUTES":"","ISWISHLISTENABLED":1,"STRMTNPLAN":"","PREORDERPRICE":0.0,"RIBBONIMAGE":"","BLNENABLEADDTOCARTPOPUP":true,"PURCHASEALLOWED":1,"CUSTOMER":{"ISALLOWEDTOPURCHASE":true},"POINTS":"","WEIGHT":0.1,"CURRENTPRODUCTINDEX":0,"STOREAVAILABILITYMESSAGE":"","POINTSTIERS":{"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":0.0}]},"BRANDLOGO":"","ISAVAILABLEFORPURCHASE":1,"SUBMITFORMWITHAJAX":false,"ISDIGITALPRODUCT":false,"ENABLEREWARDPOINTS":false,"ISAGERESTRICTED":false,"NAME":"TV 55" SHARP 55GL4260E 4K UHD LED Smart Android","BRAND":"SHARP","ADDTOCARTUSINGAJAXHANDLER":"handleAddToCart","SHOWVIEWWISHLIST":false,"HASINSTALLATIONFEES":false,"ISUSERLOGGEDIN":false,"STRSPECS":"55\" | 4K UHD | Active Motion 1000 | Supports Smart TV | Google TV | LED | Aquos Smooth Motion technology, Frameless","PROMOTIONID":"","MSRP":"","AVAILABLEVARIANTS":[],"QUANTITYAVAILABLELABEL":"Quantity Available","LENGTH":"","PURCHASEDINMULTIPLESOF":1,"ISPREORDER":0,"WIDTH":"","PRODUCTID":120726,"PAGEID":2.0,"AVAILABLEINSTORE":"na","PREVIOUSPRICE":429.0,"ONLINEAVAILABILITYMESSAGE":"","MINIMUMORDERQUANTITYDESCRIPTION":"Minimum of 0","ISINVENTORYTRACKINGENABLED":true,"BRANDLOGODIMENSIONS":"","PRICES":"\n\t\t\t\t\t

    €379.00

    \n\t\t\t\t\t\n\t\t\t\t\t\t

    €429.00

    \n\t\t\t\t\t","PREORDERENDDATE":"","MAXIMUMORDERQUANTITYDESCRIPTION":"Maximum of 0","ISAVAILABLEONLINE":1,"CARDHOLDERPRICE":415.0,"RIBBONDATETO":"June, 01 2024 16:00:00","MAXIMUMORDERQUANTITY":"","productAttributes":[],"AFFILIATEURL":"","STRGIFTSMESSAGE":"","quantityLabel":"Quantity","HEIGHT":"","SHOWQUANTITYAVAILABLE":false,"BACKORDERTYPE":2,"SHOWVIEWFAVORITES":false,"QUANTITYAVAILABLE":230.0,"HASMINIMUMORDERQUANTITY":false,"HSCODE":"","MINIMUMORDERQUANTITY":"","USEATTRIBUTEGRID":false,"HASMAXIMUMORDERQUANTITY":false,"PRICETIERS":{"BLNHASOVERRIDDENCUSTOMERSPECIFICPRICING":false,"FLTCROSSEDOUTPRICE":429.0,"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":379.0}],"INTPROMOTIONID":35283}});objProductList.renderAddToCartInfo({"SELECTEDQUANTITY":1.0,"PREORDERDOWNPAYMENTAMOUNT":0.0,"PRODUCTCATEGORYID":"","SKUNUMBER":"TV.01510","PRODUCTQUANTITYUNITFRACTION":1.0,"HASATTRIBUTEGRID":false,"QUANTITY":1.0,"ALIAS":390276,"RELEASEDATE":"","ISGIFTCARD":false,"UPC":"","PRODUCTIMAGES":[{"PRODUCTID":119632,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":183187,"NAME":"TV_73B07BA985D61.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_73B07BA985D61.jpg","IMAGEALTTEXT":"","ORDERNUMBER":1,"DATEMODIFIED":"October, 17 2023 08:42:05","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"October, 17 2023 08:41:58"},{"PRODUCTID":119632,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":183186,"NAME":"TV_8389FE4D8EF55.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_8389FE4D8EF55.jpg","IMAGEALTTEXT":"","ORDERNUMBER":2,"DATEMODIFIED":"October, 17 2023 08:42:05","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"October, 17 2023 08:41:58"},{"PRODUCTID":119632,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":183185,"NAME":"TV_17AC24844C590.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_17AC24844C590.jpg","IMAGEALTTEXT":"","ORDERNUMBER":3,"DATEMODIFIED":"October, 17 2023 08:42:05","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"October, 17 2023 08:41:58"}],"HASRELEASEDATE":false,"ISFAVORITESENABLED":0.0,"PRODUCTATTRIBUTEGRIDATTRIBUTES":"","ISWISHLISTENABLED":1,"STRMTNPLAN":"","PREORDERPRICE":0.0,"RIBBONIMAGE":"","BLNENABLEADDTOCARTPOPUP":true,"PURCHASEALLOWED":1,"CUSTOMER":{"ISALLOWEDTOPURCHASE":true},"POINTS":"","WEIGHT":0.1,"CURRENTPRODUCTINDEX":0,"STOREAVAILABILITYMESSAGE":"","POINTSTIERS":{"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":0.0}]},"BRANDLOGO":"","ISAVAILABLEFORPURCHASE":1,"SUBMITFORMWITHAJAX":false,"ISDIGITALPRODUCT":false,"ENABLEREWARDPOINTS":false,"ISAGERESTRICTED":false,"NAME":"TV 55" SHARP 4T-C55FK2EL2NB 4K UHD LED Smart","BRAND":"SHARP","ADDTOCARTUSINGAJAXHANDLER":"handleAddToCart","SHOWVIEWWISHLIST":false,"HASINSTALLATIONFEES":false,"ISUSERLOGGEDIN":false,"STRSPECS":"55\" | 4K UHD | Active Motion 400 | Supports Smart TV | Linux | LED | Harman-Kardon, DTS-X, HDR10, Frameless","PROMOTIONID":"","MSRP":"","AVAILABLEVARIANTS":[],"QUANTITYAVAILABLELABEL":"Quantity Available","LENGTH":"","PURCHASEDINMULTIPLESOF":1,"ISPREORDER":0,"WIDTH":"","PRODUCTID":119632,"PAGEID":2.0,"AVAILABLEINSTORE":"na","PREVIOUSPRICE":379.0,"ONLINEAVAILABILITYMESSAGE":"","MINIMUMORDERQUANTITYDESCRIPTION":"Minimum of 0","ISINVENTORYTRACKINGENABLED":true,"BRANDLOGODIMENSIONS":"","PRICES":"\n\t\t\t\t\t

    €339.00

    \n\t\t\t\t\t\n\t\t\t\t\t\t

    €379.00

    \n\t\t\t\t\t","PREORDERENDDATE":"","MAXIMUMORDERQUANTITYDESCRIPTION":"Maximum of 0","ISAVAILABLEONLINE":1,"CARDHOLDERPRICE":369.0,"RIBBONDATETO":"June, 01 2024 16:00:00","MAXIMUMORDERQUANTITY":"","productAttributes":[],"AFFILIATEURL":"","STRGIFTSMESSAGE":"","quantityLabel":"Quantity","HEIGHT":"","SHOWQUANTITYAVAILABLE":false,"BACKORDERTYPE":2,"SHOWVIEWFAVORITES":false,"QUANTITYAVAILABLE":111.0,"HASMINIMUMORDERQUANTITY":false,"HSCODE":"","MINIMUMORDERQUANTITY":"","USEATTRIBUTEGRID":false,"HASMAXIMUMORDERQUANTITY":false,"PRICETIERS":{"BLNHASOVERRIDDENCUSTOMERSPECIFICPRICING":false,"FLTCROSSEDOUTPRICE":379.0,"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":339.0}],"INTPROMOTIONID":35291}});objProductList.renderAddToCartInfo({"SELECTEDQUANTITY":1.0,"PREORDERDOWNPAYMENTAMOUNT":0.0,"PRODUCTCATEGORYID":"","SKUNUMBER":"TV.01417","PRODUCTQUANTITYUNITFRACTION":1.0,"HASATTRIBUTEGRID":false,"QUANTITY":1.0,"ALIAS":387368,"RELEASEDATE":"","ISGIFTCARD":false,"UPC":"","PRODUCTIMAGES":[{"PRODUCTID":122372,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":189932,"NAME":"TV_D01533A88E2AC.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_D01533A88E2AC.jpg","IMAGEALTTEXT":"","ORDERNUMBER":1,"DATEMODIFIED":"February, 22 2024 00:59:37","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"February, 22 2024 00:59:34"},{"PRODUCTID":122372,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":189933,"NAME":"TV_5AECB7315C487.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_5AECB7315C487.jpg","IMAGEALTTEXT":"","ORDERNUMBER":2,"DATEMODIFIED":"February, 22 2024 00:59:37","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"February, 22 2024 00:59:34"},{"PRODUCTID":122372,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":189934,"NAME":"TV_D9552FF6CA5CA.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_D9552FF6CA5CA.jpg","IMAGEALTTEXT":"","ORDERNUMBER":3,"DATEMODIFIED":"February, 22 2024 00:59:37","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"February, 22 2024 00:59:34"}],"HASRELEASEDATE":false,"ISFAVORITESENABLED":0.0,"PRODUCTATTRIBUTEGRIDATTRIBUTES":"","ISWISHLISTENABLED":1,"STRMTNPLAN":"","PREORDERPRICE":0.0,"RIBBONIMAGE":"","BLNENABLEADDTOCARTPOPUP":true,"PURCHASEALLOWED":1,"CUSTOMER":{"ISALLOWEDTOPURCHASE":true},"POINTS":"","WEIGHT":0.1,"CURRENTPRODUCTINDEX":0,"STOREAVAILABILITYMESSAGE":"","POINTSTIERS":{"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":0.0}]},"BRANDLOGO":"","ISAVAILABLEFORPURCHASE":1,"SUBMITFORMWITHAJAX":false,"ISDIGITALPRODUCT":false,"ENABLEREWARDPOINTS":false,"ISAGERESTRICTED":false,"NAME":"TV 43" LG 43UR73003LA 4K UHD LED Smart","BRAND":"LG","ADDTOCARTUSINGAJAXHANDLER":"handleAddToCart","SHOWVIEWWISHLIST":false,"HASINSTALLATIONFEES":false,"ISUSERLOGGEDIN":false,"STRSPECS":"43\" | 4K UHD | 50Hz | Supports Smart TV | WebOs 23 | LED | α5 AI Processor 4K Gen6 | AI, LG ThinQ, Game optimizer","PROMOTIONID":"","MSRP":"","AVAILABLEVARIANTS":[],"QUANTITYAVAILABLELABEL":"Quantity Available","LENGTH":"","PURCHASEDINMULTIPLESOF":1,"ISPREORDER":0,"WIDTH":"","PRODUCTID":122372,"PAGEID":2.0,"AVAILABLEINSTORE":"na","PREVIOUSPRICE":369.0,"ONLINEAVAILABILITYMESSAGE":"","MINIMUMORDERQUANTITYDESCRIPTION":"Minimum of 0","ISINVENTORYTRACKINGENABLED":true,"BRANDLOGODIMENSIONS":"","PRICES":"\n\t\t\t\t\t

    €349.00

    \n\t\t\t\t\t\n\t\t\t\t\t\t

    €369.00

    \n\t\t\t\t\t","PREORDERENDDATE":"","MAXIMUMORDERQUANTITYDESCRIPTION":"Maximum of 0","ISAVAILABLEONLINE":1,"CARDHOLDERPRICE":359.0,"RIBBONDATETO":"June, 01 2024 16:00:00","MAXIMUMORDERQUANTITY":"","productAttributes":[],"AFFILIATEURL":"","STRGIFTSMESSAGE":"","quantityLabel":"Quantity","HEIGHT":"","SHOWQUANTITYAVAILABLE":false,"BACKORDERTYPE":2,"SHOWVIEWFAVORITES":false,"QUANTITYAVAILABLE":198.0,"HASMINIMUMORDERQUANTITY":false,"HSCODE":"","MINIMUMORDERQUANTITY":"","USEATTRIBUTEGRID":false,"HASMAXIMUMORDERQUANTITY":false,"PRICETIERS":{"BLNHASOVERRIDDENCUSTOMERSPECIFICPRICING":false,"FLTCROSSEDOUTPRICE":369.0,"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":349.0}],"INTPROMOTIONID":35390}});objProductList.renderAddToCartInfo({"SELECTEDQUANTITY":1.0,"PREORDERDOWNPAYMENTAMOUNT":0.0,"PRODUCTCATEGORYID":"","SKUNUMBER":"TV.01469","PRODUCTQUANTITYUNITFRACTION":1.0,"HASATTRIBUTEGRID":false,"QUANTITY":1.0,"ALIAS":387731,"RELEASEDATE":"","ISGIFTCARD":false,"UPC":"","PRODUCTIMAGES":[{"PRODUCTID":116628,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":176115,"NAME":"TV_DE30EF76BB72D.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_DE30EF76BB72D.jpg","IMAGEALTTEXT":"","ORDERNUMBER":1,"DATEMODIFIED":"May, 18 2023 06:09:04","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"May, 18 2023 06:09:00"},{"PRODUCTID":116628,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":176116,"NAME":"TV_E76D3D5100AD3.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_E76D3D5100AD3.jpg","IMAGEALTTEXT":"","ORDERNUMBER":2,"DATEMODIFIED":"May, 18 2023 06:09:04","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"May, 18 2023 06:09:00"},{"PRODUCTID":116628,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":176117,"NAME":"TV_1236FCC812892.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_1236FCC812892.jpg","IMAGEALTTEXT":"","ORDERNUMBER":3,"DATEMODIFIED":"May, 18 2023 06:09:04","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"May, 18 2023 06:09:00"}],"HASRELEASEDATE":false,"ISFAVORITESENABLED":0.0,"PRODUCTATTRIBUTEGRIDATTRIBUTES":"","ISWISHLISTENABLED":1,"STRMTNPLAN":"","PREORDERPRICE":0.0,"RIBBONIMAGE":"","BLNENABLEADDTOCARTPOPUP":true,"PURCHASEALLOWED":1,"CUSTOMER":{"ISALLOWEDTOPURCHASE":true},"POINTS":"","WEIGHT":0.1,"CURRENTPRODUCTINDEX":0,"STOREAVAILABILITYMESSAGE":"","POINTSTIERS":{"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":0.0}]},"BRANDLOGO":"","ISAVAILABLEFORPURCHASE":1,"SUBMITFORMWITHAJAX":false,"ISDIGITALPRODUCT":false,"ENABLEREWARDPOINTS":false,"ISAGERESTRICTED":false,"NAME":"TV 40" TESLA Series 6 40E635BFS FHD LED Smart Android","BRAND":"TESLA","ADDTOCARTUSINGAJAXHANDLER":"handleAddToCart","SHOWVIEWWISHLIST":false,"HASINSTALLATIONFEES":false,"ISUSERLOGGEDIN":false,"STRSPECS":"40\" | Full HD 1920 x 1080 pixels | 60Hz | Supports Smart Tv | Android TV 11 | LED | Quad-core A55 | Android TV, Google Assistant, Built-in Chromecast","PROMOTIONID":"","MSRP":"","AVAILABLEVARIANTS":[],"QUANTITYAVAILABLELABEL":"Quantity Available","LENGTH":"","PURCHASEDINMULTIPLESOF":1,"ISPREORDER":0,"WIDTH":"","PRODUCTID":116628,"PAGEID":2.0,"AVAILABLEINSTORE":"na","PREVIOUSPRICE":229.0,"ONLINEAVAILABILITYMESSAGE":"","MINIMUMORDERQUANTITYDESCRIPTION":"Minimum of 0","ISINVENTORYTRACKINGENABLED":true,"BRANDLOGODIMENSIONS":"","PRICES":"\n\t\t\t\t\t

    €199.00

    \n\t\t\t\t\t\n\t\t\t\t\t\t

    €229.00

    \n\t\t\t\t\t","PREORDERENDDATE":"","MAXIMUMORDERQUANTITYDESCRIPTION":"Maximum of 0","ISAVAILABLEONLINE":1,"CARDHOLDERPRICE":219.0,"RIBBONDATETO":"June, 01 2024 16:00:00","MAXIMUMORDERQUANTITY":"","productAttributes":[],"AFFILIATEURL":"","STRGIFTSMESSAGE":"","quantityLabel":"Quantity","HEIGHT":"","SHOWQUANTITYAVAILABLE":false,"BACKORDERTYPE":2,"SHOWVIEWFAVORITES":false,"QUANTITYAVAILABLE":160.0,"HASMINIMUMORDERQUANTITY":false,"HSCODE":"","MINIMUMORDERQUANTITY":"","USEATTRIBUTEGRID":false,"HASMAXIMUMORDERQUANTITY":false,"PRICETIERS":{"BLNHASOVERRIDDENCUSTOMERSPECIFICPRICING":false,"FLTCROSSEDOUTPRICE":229.0,"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":199.0}],"INTPROMOTIONID":35307}});objProductList.renderAddToCartInfo({"SELECTEDQUANTITY":1.0,"PREORDERDOWNPAYMENTAMOUNT":0.0,"PRODUCTCATEGORYID":"","SKUNUMBER":"TV.01330","PRODUCTQUANTITYUNITFRACTION":1.0,"HASATTRIBUTEGRID":false,"QUANTITY":1.0,"ALIAS":385804,"RELEASEDATE":"","ISGIFTCARD":false,"UPC":"","PRODUCTIMAGES":[{"PRODUCTID":120197,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":184012,"NAME":"TV_19EE733D7AD93.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_19EE733D7AD93.jpg","IMAGEALTTEXT":"","ORDERNUMBER":1,"DATEMODIFIED":"November, 06 2023 07:35:47","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"November, 06 2023 07:35:32"},{"PRODUCTID":120197,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":184013,"NAME":"TV_D65B1D17A498C.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_D65B1D17A498C.jpg","IMAGEALTTEXT":"","ORDERNUMBER":2,"DATEMODIFIED":"November, 06 2023 07:35:47","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"November, 06 2023 07:35:32"},{"PRODUCTID":120197,"ISACTIVE":1,"ColorboxDimensions":"1000x1000","PRODUCTIMAGEID":184011,"NAME":"TV_8481518D98E08.jpg","ThumbnailDimensions":"250x250","IMAGE":"TV_8481518D98E08.jpg","IMAGEALTTEXT":"","ORDERNUMBER":3,"DATEMODIFIED":"November, 06 2023 07:35:47","IMAGEDIMENSIONS":"1000x1000","LargeDimensions":"500x500","DATECREATED":"November, 06 2023 07:35:32"}],"HASRELEASEDATE":false,"ISFAVORITESENABLED":0.0,"PRODUCTATTRIBUTEGRIDATTRIBUTES":"","ISWISHLISTENABLED":1,"STRMTNPLAN":"","PREORDERPRICE":0.0,"RIBBONIMAGE":"","BLNENABLEADDTOCARTPOPUP":true,"PURCHASEALLOWED":1,"CUSTOMER":{"ISALLOWEDTOPURCHASE":true},"POINTS":"","WEIGHT":0.1,"CURRENTPRODUCTINDEX":0,"STOREAVAILABILITYMESSAGE":"","POINTSTIERS":{"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":0.0}]},"BRANDLOGO":"","ISAVAILABLEFORPURCHASE":1,"SUBMITFORMWITHAJAX":false,"ISDIGITALPRODUCT":false,"ENABLEREWARDPOINTS":false,"ISAGERESTRICTED":false,"NAME":"TV 32" TESLA Series 3 32E325BH HD Ready LED black","BRAND":"TESLA","ADDTOCARTUSINGAJAXHANDLER":"handleAddToCart","SHOWVIEWWISHLIST":false,"HASINSTALLATIONFEES":false,"ISUSERLOGGEDIN":false,"STRSPECS":"32\" | HD Ready 1366 x 768 pixels | 60Hz | LED","PROMOTIONID":"","MSRP":"","AVAILABLEVARIANTS":[],"QUANTITYAVAILABLELABEL":"Quantity Available","LENGTH":"","PURCHASEDINMULTIPLESOF":1,"ISPREORDER":0,"WIDTH":"","PRODUCTID":120197,"PAGEID":2.0,"AVAILABLEINSTORE":"na","PREVIOUSPRICE":119.0,"ONLINEAVAILABILITYMESSAGE":"","MINIMUMORDERQUANTITYDESCRIPTION":"Minimum of 0","ISINVENTORYTRACKINGENABLED":true,"BRANDLOGODIMENSIONS":"","PRICES":"\n\t\t\t\t\t

    €99.00

    \n\t\t\t\t\t\n\t\t\t\t\t\t

    €119.00

    \n\t\t\t\t\t","PREORDERENDDATE":"","MAXIMUMORDERQUANTITYDESCRIPTION":"Maximum of 0","ISAVAILABLEONLINE":1,"CARDHOLDERPRICE":115.0,"RIBBONDATETO":"June, 01 2024 16:00:00","MAXIMUMORDERQUANTITY":"","productAttributes":[],"AFFILIATEURL":"","STRGIFTSMESSAGE":"","quantityLabel":"Quantity","HEIGHT":"","SHOWQUANTITYAVAILABLE":false,"BACKORDERTYPE":2,"SHOWVIEWFAVORITES":false,"QUANTITYAVAILABLE":302.0,"HASMINIMUMORDERQUANTITY":false,"HSCODE":"","MINIMUMORDERQUANTITY":"","USEATTRIBUTEGRID":false,"HASMAXIMUMORDERQUANTITY":false,"PRICETIERS":{"BLNHASOVERRIDDENCUSTOMERSPECIFICPRICING":false,"FLTCROSSEDOUTPRICE":119.0,"ARYTIERS":[{"rangeStart":1.0,"rangeEnd":"","valueUnit":"€","value":99.0}],"INTPROMOTIONID":35316}});objProductList.setRemainingProductIDs([120271]);

    © 2024 Stephanis. All rights reserved.

    STEPHANIS: Smartphones, Televisions, Laptops, Gaming, Home appliances (2024)
    Top Articles
    The science behind intermittent fasting — and how you can make it work for you
    What Is Intermittent Fasting? Explained in Simple Terms
    Netr Aerial Viewer
    Global Foods Trading GmbH, Biebesheim a. Rhein
    Is Sam's Club Plus worth it? What to know about the premium warehouse membership before you sign up
    Jailbase Orlando
    Cad Calls Meriden Ct
    The Best Classes in WoW War Within - Best Class in 11.0.2 | Dving Guides
    How to Watch Braves vs. Dodgers: TV Channel & Live Stream - September 15
    Snarky Tea Net Worth 2022
    Day Octopus | Hawaii Marine Life
    A Fashion Lover's Guide To Copenhagen
    Best Pawn Shops Near Me
    Tripadvisor Near Me
    MindWare : Customer Reviews : Hocus Pocus Magic Show Kit
    Citymd West 146Th Urgent Care - Nyc Photos
    Gwdonate Org
    Summer Rae Boyfriend Love Island – Just Speak News
    [Birthday Column] Celebrating Sarada's Birthday on 3/31! Looking Back on the Successor to the Uchiha Legacy Who Dreams of Becoming Hokage! | NARUTO OFFICIAL SITE (NARUTO & BORUTO)
    Best Uf Sororities
    Adam4Adam Discount Codes
    Wausau Obits Legacy
    Kamzz Llc
    Mail.zsthost Change Password
    Football - 2024/2025 Women’s Super League: Preview, schedule and how to watch
    Pirates Of The Caribbean 1 123Movies
    T Mobile Rival Crossword Clue
    Myql Loan Login
    Tokyo Spa Memphis Reviews
    Random Bibleizer
    12657 Uline Way Kenosha Wi
    Ts Modesto
    What is Software Defined Networking (SDN)? - GeeksforGeeks
    Persona 4 Golden Taotie Fusion Calculator
    Kstate Qualtrics
    Exploring TrippleThePotatoes: A Popular Game - Unblocked Hub
    Old Peterbilt For Sale Craigslist
    Metro 72 Hour Extension 2022
    Afspraak inzien
    2008 Chevrolet Corvette for sale - Houston, TX - craigslist
    Philadelphia Inquirer Obituaries This Week
    Express Employment Sign In
    Satucket Lectionary
    Random Animal Hybrid Generator Wheel
    Collision Masters Fairbanks
    844 386 9815
    Bonecrusher Upgrade Rs3
    Windy Bee Favor
    Yosemite Sam Hood Ornament
    Service Changes and Self-Service Options
    Blippi Park Carlsbad
    Stone Eater Bike Park
    Latest Posts
    Article information

    Author: Carlyn Walter

    Last Updated:

    Views: 6514

    Rating: 5 / 5 (50 voted)

    Reviews: 89% of readers found this page helpful

    Author information

    Name: Carlyn Walter

    Birthday: 1996-01-03

    Address: Suite 452 40815 Denyse Extensions, Sengermouth, OR 42374

    Phone: +8501809515404

    Job: Manufacturing Technician

    Hobby: Table tennis, Archery, Vacation, Metal detecting, Yo-yoing, Crocheting, Creative writing

    Introduction: My name is Carlyn Walter, I am a lively, glamorous, healthy, clean, powerful, calm, combative person who loves writing and wants to share my knowledge and understanding with you.