Showing source for: https://www.powbattery.com/
Duration: 1.096471s
Server: Apache

<!DOCTYPE html>
<html dir="ltr" lang="en">
    <head>
        <title>
   powbattery - we offer battery and charger.
        </title>
        <meta content="width=device-width, initial-scale=1.0" name="viewport">
        <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
        <meta content="battery, charger, power tools battery, laptop battery, notebook battery, mobile phone battery, camera battery, camera charger, camcorder battery" name="keywords">
        <meta content="we offer power tools battery, laptop battery, notebook battery, mobile phone battery, camera battery, camera charger, camcorder battery, Brand new, one year warranty." name="description">
        <meta content="powbattery" name="author">
        <meta content="http://www.powbattery.com/" name="generator">
        <base href="https://www.powbattery.com/">
        <link href="https://www.powbattery.com/" rel="canonical">
        <link href="includes/templates/mobishop_green/css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/style_bootstrap.min.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/stylesheet-font-awesome.min.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/stylesheet.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/stylesheet_carousel.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/stylesheet_categories_menu.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/stylesheet_columnar_pr.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/stylesheet_css_buttons.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/stylesheet_footer_menu.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/stylesheet_login_header.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/stylesheet_res_extra.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/stylesheet_select_popup.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/stylesheet_slider.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/stylesheet_vert_categories_menu.css" rel="stylesheet" type="text/css">
        <link href="includes/templates/mobishop_green/css/stylesheet_zen_lightbox.css" rel="stylesheet" type="text/css">
        <script src="includes/templates/mobishop_green/jscript/jscript__jquery.min.js" type="text/javascript">
        </script>
        <script src="includes/templates/mobishop_green/jscript/jscript_flexslider-min.js" type="text/javascript">
        </script>
        <script src="includes/templates/mobishop_green/jscript/jscript_jquery.cycle.js" type="text/javascript">
        </script>
        <script src="includes/templates/mobishop_green/jscript/jscript_menu_conf.js" type="text/javascript">
        </script>
        <script type="text/javascript">
            <!--//<![CDATA[
            if (typeof zcJS == "undefined" || !zcJS) {
            window.zcJS = { name: 'zcJS', version: '0.1.0.0' };
            };
            
            zcJS.ajax = function (options) {
            options.url = options.url.replace("&amp;", unescape("&amp;"));
            var deferred = jQuery.Deferred(function (d) {
            var securityToken = '28e9ba6a51c73671908f35c10112b834';
            var defaults = {
            cache: false,
            type: 'POST',
            traditional: true,
            dataType: 'json',
            timeout: 5000,
            data: jQuery.extend(true,{
            securityToken: securityToken
            }, options.data)
            },
            settings = jQuery.extend(true, {}, defaults, options);
            if (typeof(console.log) == 'function') {
            console.log( settings );
            }
            
            d.done(settings.success);
            d.fail(settings.error);
            d.done(settings.complete);
            var jqXHRSettings = jQuery.extend(true, {}, settings, {
            success: function (response, textStatus, jqXHR) {
            d.resolve(response, textStatus, jqXHR);
            },
            error: function (jqXHR, textStatus, errorThrown) {
            if (window.console) {
            if (typeof(console.log) == 'function') {
            console.log(jqXHR);
            }
            }
            d.reject(jqXHR, textStatus, errorThrown);
            },
            complete: d.resolve
            });
            jQuery.ajax(jqXHRSettings);
            }).fail(function(jqXHR, textStatus, errorThrown) {
            var response = jqXHR.getResponseHeader('status');
            var responseHtml = jqXHR.responseText;
            var contentType = jqXHR.getResponseHeader("content-type");
            switch (response)
            {
            case '403 Forbidden':
            var jsonResponse = JSON.parse(jqXHR.responseText);
            var errorType = jsonResponse.errorType;
            switch (errorType)
            {
            case 'ADMIN_BLOCK_WARNING':
            break;
            case 'AUTH_ERROR':
            break;
            case 'SECURITY_TOKEN':
            break;
            
            default:
            alert('An Internal Error of type '+errorType+' was received while processing an ajax call. The action you requested could not be completed.');
            }
            break;
            default:
            if (jqXHR.status === 200) {
            if (contentType.toLowerCase().indexOf("text/html") >= 0) {
            document.open();
            document.write(responseHtml);
            document.close();
            }
            }
            }
            });
            
            var promise = deferred.promise();
            return promise;
            };
            zcJS.timer = function (options) {
            var defaults = {
            interval: 10000,
            startEvent: null,
            intervalEvent: null,
            stopEvent: null
            
            },
            settings = jQuery.extend(true, {}, defaults, options);
            
            var enabled = new Boolean(false);
            var timerId = 0;
            var mySelf;
            this.Start = function()
            {
            this.enabled = new Boolean(true);
            
            mySelf = this;
            mySelf.settings = settings;
            if (mySelf.enabled)
            {
            mySelf.timerId = setInterval(
            function()
            {
            if (mySelf.settings.intervalEvent)
            {
            mySelf.settings.intervalEvent(mySelf);
            }
            }, mySelf.settings.interval);
            if (mySelf.settings.startEvent)
            {
            mySelf.settings.startEvent(mySelf);
            }
            }
            };
            this.Stop = function()
            {
            mySelf.enabled = new Boolean(false);
            clearInterval(mySelf.timerId);
            if (mySelf.settings.stopEvent)
            {
            mySelf.settings.stopEvent(mySelf);
            }
            };
            };
            
            //]]-->
        </script>
        <link href="includes/templates/mobishop_green/css/responsive_theme.css" rel="stylesheet" type="text/css">
        <!-- Global site tag (gtag.js) - Google Ads: 790299183 -->
        <script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-790299183">
        </script>
        <script>
            window.dataLayer = window.dataLayer || [];
            function gtag() {
                dataLayer.push(arguments);
            }
            gtag('js', new Date());
            gtag('config', 'AW-790299183');
        </script>
    </head>
    <body id="indexHomeBody">
        <div class="container-fluid body-bg">
            <div class="body-upper-bg">
                <div class="row-fluid" id="header_wrapper">
                    <div class="messages-st">
                    </div>
                    <!--bof-header logo and navigation display-->
                    <div id="headerWrapper">
                        <!--bof-branding display-->
                        <div id="logo">
                            <a href="https://www.powbattery.com/">
                                <img alt="Powered by powbattery.com" height="70" src="includes/templates/mobishop_green/images/logo.gif" title=" Powered by powbattery.com " width="200">
                            </a>
                        </div>
                        <!--eof-branding display-->
                        <div>
                            <!--bof-header ezpage links-->
                            <div class="topper-menu float-right hidden-phone">
                                <ul class="list-style-none">
                                    <li>
                                        <a href="https://www.powbattery.com/index.php?main_page=contact_us">
           Contact Us
                                        </a>
                                    </li>
                                    <li>
                                        <a href="https://www.powbattery.com/index.php?main_page=shippinginfo">
                                            Payment &amp; Shipping
                                        </a>
                                    </li>
                                    <li>
                                        <a href="https://www.powbattery.com/index.php?main_page=page_2">
                                            Return &amp; Warranty
                                        </a>
                                    </li>
                                    <li>
                                        <a href="https://www.powbattery.com/index.php?main_page=privacy">
                                            Privacy Notice
                                        </a>
                                    </li>
                                    <li>
                                        <a href="https://www.powbattery.com/index.php?main_page=conditions">
                                            Terms and Conditions
                                        </a>
                                    </li>
                                    <li>
                                        <a href="https://www.powbattery.com/index.php?main_page=page&amp;id=7">
                                            About Us
                                        </a>
                                    </li>
                                </ul>
                            </div>
                            <!-- Languages/currency -->
                            <div class="languages-wrapper">
                                <div class="top-item visible-phone">
                                    <a class="item-icon" href="#" id="menu_more">
          &nbsp;
                                    </a>
                                    <div class="popup popup-win pull-right" id="menu_more_popup">
                                        <img alt="close" class="close-pic float-right" src="includes/templates/mobishop_green/images/close_pic.gif">
                                        <!--bof-header ezpage links-->
                                        <ul class="list-style-none">
                                            <li>
                                                <a href="https://www.powbattery.com/index.php?main_page=contact_us">
             Contact Us
                                                </a>
                                            </li>
                                            <li>
                                                <a href="https://www.powbattery.com/index.php?main_page=shippinginfo">
                                                    Payment &amp; Shipping
                                                </a>
                                            </li>
                                            <li>
                                                <a href="https://www.powbattery.com/index.php?main_page=page_2">
                                                    Return &amp; Warranty
                                                </a>
                                            </li>
                                            <li>
                                                <a href="https://www.powbattery.com/index.php?main_page=privacy">
                                                    Privacy Notice
                                                </a>
                                            </li>
                                            <li>
                                                <a href="https://www.powbattery.com/index.php?main_page=conditions">
                                                    Terms and Conditions
                                                </a>
                                            </li>
                                            <li>
                                                <a href="https://www.powbattery.com/index.php?main_page=page&amp;id=7">
                                                    About Us
                                                </a>
                                            </li>
                                        </ul>
                                        <hr>
                                        <a href="https://www.powbattery.com/index.php?main_page=login">
                                            Log In
                                        </a>
                                        <!--eof-header ezpage links-->
                                    </div>
                                </div>
                                <div class="currency">
                                    <a href="#" id="currency_switcher">
                                        <span class="hidden-phone">
           United Kingdom
                                        </span>
                                    </a>
                                    <div class="popup popup-win" id="currPopup">
                                        <img alt="close" class="close-pic float-right" id="close-pic" src="includes/templates/mobishop_green/images/close_pic.gif">
                                        <ul class="list-popup">
                                            <li>
                                                <a href="https://www.powbattery.com/">
                                                    United Kingdom
                                                </a>
                                            </li>
                                            <li>
                                                <a href="https://www.powbattery.com/us/">
                                                    United States
                                                </a>
                                            </li>
                                        </ul>
                                    </div>
                                </div>
                            </div>
                            <!--eof-header ezpage links-->
                            <div class="clearRight">
                            </div>
                            <div id="top_nav">
                                <div id="tab_nav">
                                    <ul class="list-style-none">
                                        <li class="">
                                            <a href="index.php?main_page=products_new">
            New Products
                                            </a>
                                        </li>
                                        <li class="">
                                            <a href="index.php?main_page=specials">
                                                Specials
                                            </a>
                                        </li>
                                        <li class="">
                                            <a href="index.php?main_page=featured_products">
                                                Featured Products
                                            </a>
                                        </li>
                                        <li class="">
                                            <a href="https://www.powbattery.com/index.php?main_page=account">
                                                My Account
                                            </a>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                            <div class="float-right" id="login_logout_section">
                                <a href="https://www.powbattery.com/index.php?main_page=login" id="logindropd">
                                    Log In
                                </a>
                                <div class="popup loginbox">
                                    <div class="sideBoxContent" id="Content">
                                        <form action="https://www.powbattery.com/index.php?main_page=login&amp;action=process" id="loginFormSidebox" method="post" name="login_box">
                                            <input name="securityToken" type="hidden" value="28e9ba6a51c73671908f35c10112b834">
                                            Email:
                                            <br>
                                            <input name="email_address" size="24" type="text">
                                            <br>
                                            Password:
                                            <br>
                                            <input name="password" size="24" type="password">
                                            <br>
                                            <a href="https://www.powbattery.com/index.php?main_page=password_forgotten">
                                                Forgotten Password
                                            </a>
                                            <br>
                                            <a href="https://www.powbattery.com/index.php?main_page=login">
                                                Create Account
                                            </a>
                                            <br>
                                            <input name="securityToken" type="hidden" value="28e9ba6a51c73671908f35c10112b834">
                                            <div class="centeredContent">
                                                <input class="cssButton submit_button button button_login" onmouseout="this.className='cssButton submit_button button  button_login'" onmouseover="this.className='cssButtonHover  button_login button_loginHover'" type="submit" value="Sign In">
                                            </div>
                                        </form>
                                    </div>
                                </div>
                                or
                                <a href="https://www.powbattery.com/index.php?main_page=create_account">
                                    Register
                                </a>
                            </div>
                            <div class="clearBoth">
                            </div>
                        </div>
                        <div class="clearBoth">
                        </div>
                        <!-- tools section -->
                        <div class="tools-wrp">
                            <div class="align-center" id="tools_wrapper">
                                <div id="search-panel">
                                    <div class="float-left td-search-header">
                                        <div class="search-header float-left">
                                            <form action="https://www.powbattery.com/index.php?main_page=advanced_search_result" method="get" name="quick_find_header">
                                                <input name="main_page" type="hidden" value="advanced_search_result">
                                                <input name="search_in_description" type="hidden" value="1">
                                                <div class="search-header-input">
                                                    <input maxlength="60" name="keyword" onblur="if (this.value == '') this.value = 'Enter search keywords here';" onfocus="if (this.value == 'Enter search keywords here') this.value = '';" size="6" type="text" value="Enter search keywords here">
                                                </div>
                                                <input alt="search" class="button-search-header" src="includes/templates/mobishop_green/images/search_header_button.gif" type="image">
                                            </form>
                                            <div class="advanced_search float-left">
                                                <a href="index.php?main_page=advanced_search">
             HEADER_ADVANCED_SEARCH
                                                </a>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="cart-header-wrapper">
                                        <!-- header cart section -->
                                        <table class="align-center cart-header">
                                            <tbody>
                                                <tr>
                                                    <td>
                                                    </td>
                                                    <td class="cart-img-td">
                                                        <div class="cartBox" id="cartBoxEmpty">
                                                            <a href="https://www.powbattery.com/index.php?main_page=shopping_cart">
                                                                <img alt="" class="cart-icon empty float-left" src="includes/templates/mobishop_green/images/spacer.gif">
                                                            </a>
                                                        </div>
                                                        <span>
               Your cart is empty
                                                        </span>
                                                    </td>
                                                    <td id="delim">
                                                    </td>
                                                    <td class="blue-link">
                                                        <a href="https://www.powbattery.com/index.php?main_page=checkout_shipping">
                                                            Checkout
                                                        </a>
                                                    </td>
                                                </tr>
                                            </tbody>
                                        </table>
                                    </div>
                                </div>
                            </div>
                            <!-- mobile header -->
                            <div id="top_nav_mobile">
                                <div id="tab_nav_mobile">
                                    <ul class="list-style-none">
                                        <li class="tm-catalog">
                                            <span class="dlm">
                                            </span>
                                            <a id="catalog">
                                                <img alt="" height="50" src="includes/templates/mobishop_green/images/spacer.gif" width="50">
                                            </a>
                                        </li>
                                        <li class="tm-account">
                                            <span class="dlm">
                                            </span>
                                            <a href="https://www.powbattery.com/index.php?main_page=account">
                                                <img alt="" height="50" src="includes/templates/mobishop_green/images/spacer.gif" width="50">
                                            </a>
                                        </li>
                                        <li class="tm-cart">
                                            <span class="dlm">
                                            </span>
                                            <a class="cart-icon" href="https://www.powbattery.com/index.php?main_page=shopping_cart">
                                                <img alt="" height="50" src="includes/templates/mobishop_green/images/spacer.gif" width="50">
                                            </a>
                                        </li>
                                        <li class="tm-search">
                                            <span class="dlm">
                                            </span>
                                            <a href="index.php?main_page=advanced_search">
                                                <img alt="" height="50" src="includes/templates/mobishop_green/images/spacer.gif" width="50">
                                            </a>
                                        </li>
                                    </ul>
                                </div>
                                <div class="sideBoxContent popup popup-win" id="categoriesPopup">
                                    <div class="categories-top-list no-dots">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=1">
           Camera Batteries
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=3">
                                            Camcorder Batteries
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=11">
                                            Laptop Batteries
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=12">
                                            Battery Chargers
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=13">
                                            Power Tools Batteries
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=27">
                                            Vacuum Cleaner Batteries
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=36">
                                            Cell Phone Accessories
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=42">
                                            Laptop Power Adapters/Chargers
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=46">
                                            Multipurpose Batteries &amp; Power
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=49">
                                            Telephone Batteries
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=59">
                                            Tablet &amp; eBook Accs
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=71">
                                            Portable Audio Accessories
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=102">
                                            Radio Communication Accessories
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=125">
                                            Recreational Scooter Accessories
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=129">
                                            Smart Watches Accessories
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=131">
                                            Video Game Accessories
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=137">
                                            Home Surveillance Accessories
                                        </a>
                                    </div>
                                    <div class="categories-top-list">
                                        <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=176">
                                            Computer Components Parts
                                        </a>
                                    </div>
                                </div>
                            </div>
                            <!-- /mobile header -->
                            <!-- cart popup -->
                            <div class="cart-dropdown-wrapper popup" id="cart_popup">
                                <div class="cart-tab-wrapper">
                                    <img alt="" height="1" src="includes/templates/mobishop_green/images/spacer.gif" width="1">
                                </div>
                                <div class="popup-border">
                                    <div class="content-wrapper">
                                        <div class="cart-scrolling-wrapper">
                                            <div>
                                                <div class="cartBoxEmpty">
             Your cart is empty.
                                                </div>
                                            </div>
                                        </div>
                                        <div class="popup-cart-link-box">
                                            <a href="https://www.powbattery.com/index.php?main_page=shopping_cart">
                                                View Cart
                                            </a>
                                            <a href="https://www.powbattery.com/index.php?main_page=checkout_shipping">
                                                Checkout
                                            </a>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <!-- /cart popup -->
                        </div>
                        <!-- /tools section -->
                    </div>
                </div>
                <div class="mainWrapper row-fluid">
                    <div class="span20">
                        <!-- table-->
                        <div class="row-fluid" id="contentMainWrapper">
                            <div class="span5" id="navColumnOne">
                                <div class="float-left" id="navColumnOneWrapper">
                                    <!--// bof: categories //-->
                                    <div class="leftBoxContainer" id="categories" style="width: 245px">
                                        <div class="sidebox-header-left main-sidebox-header-left">
                                            <h3 class="leftBoxHeading main-sidebox-header-right" id="categoriesHeading">
            Categories
                                            </h3>
                                        </div>
                                        <div class="sideBoxContent" id="categoriesContent">
                                            <div class="categories-top-list no-dots">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=1">
                                                    Camera Batteries
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=3">
                                                    Camcorder Batteries
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=11">
                                                    Laptop Batteries
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=12">
                                                    Battery Chargers
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=13">
                                                    Power Tools Batteries
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=27">
                                                    Vacuum Cleaner Batteries
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=36">
                                                    Cell Phone Accessories
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=42">
                                                    Laptop Power Adapters/Chargers
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=46">
                                                    Multipurpose Batteries &amp; Power
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=49">
                                                    Telephone Batteries
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=59">
                                                    Tablet &amp; eBook Accs
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=71">
                                                    Portable Audio Accessories
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=102">
                                                    Radio Communication Accessories
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=125">
                                                    Recreational Scooter Accessories
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=129">
                                                    Smart Watches Accessories
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=131">
                                                    Video Game Accessories
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=137">
                                                    Home Surveillance Accessories
                                                </a>
                                            </div>
                                            <div class="categories-top-list">
                                                <a class="category-top" href="https://www.powbattery.com/index.php?main_page=index&amp;cPath=176">
                                                    Computer Components Parts
                                                </a>
                                            </div>
                                        </div>
                                    </div>
                                    <!--// eof: categories //-->
                                    <!--// bof: information //-->
                                    <div class="leftBoxContainer" id="information" style="width: 245px">
                                        <div class="sidebox-header-left">
                                            <h3 class="leftBoxHeading" id="informationHeading">
            Information
                                            </h3>
                                        </div>
                                        <div class="sideBoxContent" id="informationContent">
                                            <ul style="margin: 0; padding: 0; list-style-type: none;">
                                                <li>
                                                    <a href="https://www.powbattery.com/index.php?main_page=shippinginfo">
                                                        Payment &amp; Shipping
                                                    </a>
                                                </li>
                                                <li>
                                                    <a href="https://www.powbattery.com/index.php?main_page=page_2">
                                                        Return &amp; Warranty
                                                    </a>
                                                </li>
                                                <li>
                                                    <a href="https://www.powbattery.com/index.php?main_page=privacy">
                                                        Privacy Notice
                                                    </a>
                                                </li>
                                                <li>
                                                    <a href="https://www.powbattery.com/index.php?main_page=conditions">
                                                        Terms and Conditions
                                                    </a>
                                                </li>
                                                <li>
                                                    <a href="https://www.powbattery.com/index.php?main_page=contact_us">
                                                        Contact Us
                                                    </a>
                                                </li>
                                                <li>
                                                    <a href="https://www.powbattery.com/index.php?main_page=site_map">
                                                        Site Map
                                                    </a>
                                                </li>
                                                <li>
                                                    <a href="https://www.powbattery.com/index.php?main_page=unsubscribe">
                                                        Newsletter Unsubscribe
                                                    </a>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <!--// eof: information //-->
                                    <!--// bof: bestsellers //-->
                                    <div class="leftBoxContainer" id="bestsellers" style="width: 245px">
                                        <div class="sidebox-header-left">
                                            <h3 class="leftBoxHeading" id="bestsellersHeading">
            Bestsellers
                                            </h3>
                                        </div>
                                        <div class="sideBoxContent" id="bestsellersContent">
                                            <div class="wrapper">
                                                <ul>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;products_id=215">
                                                            21.6V Vacuum Cleaner Replacement...
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;products_id=371">
                                                            18.00V 3000mAh Replacement Power...
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;products_id=221">
                                                            21.6V Vacuum Cleaner Replacement...
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;products_id=949">
                                                            21.6V 3000mAh Replacement Battery...
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;products_id=3204">
                                                            22.20V Replacement Power Tool...
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;products_id=899">
                                                            Replacement Lithium Battery For...
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;products_id=222">
                                                            21.6V Replacement Battery For...
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;products_id=193">
                                                            2000mAh Replacement Tools battery...
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;products_id=2214">
                                                            18.00V Replacement Power Tools...
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;products_id=299">
                                                            21.6V 6000mAh Vacuum Cleaner...
                                                        </a>
                                                    </li>
                                                </ul>
                                            </div>
                                        </div>
                                    </div>
                                    <!--// eof: bestsellers //-->
                                    <!--// bof: whatsnew //-->
                                    <div class="leftBoxContainer" id="whatsnew" style="width: 245px">
                                        <div class="sidebox-header-left">
                                            <h3 class="leftBoxHeading" id="whatsnewHeading">
            New Products -
                                                <a href="https://www.powbattery.com/index.php?main_page=products_new">
                                                    &nbsp;&nbsp;[more]
                                                </a>
                                            </h3>
                                        </div>
                                        <div class="sideBoxContent centeredContent">
                                            <div class="sideBoxContentItem">
                                                <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_50&amp;products_id=1174">
                                                    <img alt="6600mAh Replacement Laptop Battery for Toshiba PABAS098 PABAS099 PABAS174" height="100" src="images/Laptopbattery/NTB062.gif" title=" 6600mAh Replacement Laptop Battery for Toshiba PABAS098 PABAS099 PABAS174 " width="100">
                                                    <br>
                                                    6600mAh Replacement Laptop Battery for Toshiba PABAS098 PABAS099 PABAS174
                                                </a>
                                                <div>
                                                    <span class="productBasePrice">
                                                        &pound;28.99
                                                    </span>
                                                </div>
                                            </div>
                                            <div class="sideBoxContentItem">
                                                <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_50&amp;products_id=1172">
                                                    <img alt="6600mAh Replacement Laptop Battery for Toshiba PA3534U-1BRS PA3535U-1BAS PA3535U-1BRS" height="100" src="images/Laptopbattery/NTB062.gif" title=" 6600mAh Replacement Laptop Battery for Toshiba PA3534U-1BRS PA3535U-1BAS PA3535U-1BRS " width="100">
                                                    <br>
                                                    6600mAh Replacement Laptop Battery for Toshiba PA3534U-1BRS PA3535U-1BAS PA3535U-1BRS
                                                </a>
                                                <div>
                                                    <span class="productBasePrice">
                                                        &pound;28.99
                                                    </span>
                                                </div>
                                            </div>
                                            <div class="sideBoxContentItem">
                                                <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_50&amp;products_id=1173">
                                                    <img alt="6600mAh Replacement Laptop Battery for Toshiba PA3682U-1BRS PA3727U-1BRS PA3727U-1BAS" height="100" src="images/Laptopbattery/NTB062.gif" title=" 6600mAh Replacement Laptop Battery for Toshiba PA3682U-1BRS PA3727U-1BRS PA3727U-1BAS " width="100">
                                                    <br>
                                                    6600mAh Replacement Laptop Battery for Toshiba PA3682U-1BRS PA3727U-1BRS PA3727U-1BAS
                                                </a>
                                                <div>
                                                    <span class="productBasePrice">
                                                        &pound;28.99
                                                    </span>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                    <!--// eof: whatsnew //-->
                                </div>
                            </div>
                            <div class="span15" id="columnCenter">
                                <!-- bof  breadcrumb -->
                                <!-- eof breadcrumb -->
                                <!-- bof upload alerts -->
                                <!-- eof upload alerts -->
                                <div class="centerColumn" id="indexDefault">
                                    <!--
<h1 id="indexDefaultHeading">Congratulations! You have successfully installed your Zen Cart&reg; E-Commerce Solution.</h1>

Welcome <span class="greetUser">Guest!</span> Would you like to <a href="https://www.powbattery.com/index.php?main_page=login">log yourself in</a>?
<div id="" class="content">This is the main define statement for the page for english when no template defined file exists. It is located in: <strong>/includes/languages/english/index.php</strong></div>
-->
                                    <!-- deprecated - to use uncomment this section
<div id="" class="content">Define your main Index page copy here.</div>
-->
                                    <div class="content" id="indexDefaultMainContent">
                                    </div>
                                    <!-- Home Page Banners -->
                                    <!-- /Home Page Banners -->
                                    <!-- bof: whats_new -->
                                    <div class="centerBoxWrapper" id="whatsNew">
                                        <h2 class="centerBoxHeading">
           New Products For May
                                        </h2>
                                        <div class="centerBoxContentsNew float-left" style="width:33%;">
                                            <div class="c-product-wrp">
                                                <div class="columnar-product-info">
                                                    <div class="columnar-product-img">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4276">
                                                            <img alt="7.7V Replacement Battery for Asus C21N1624 0B200-02420000 Q325UA Q325UAR Zenbook Flip S UX370UA 39Wh" height="100" src="images/Laptopbattery/ASUBN038.jpg" title=" 7.7V Replacement Battery for Asus C21N1624 0B200-02420000 Q325UA Q325UAR Zenbook Flip S UX370UA 39Wh " width="100">
                                                        </a>
                                                    </div>
                                                    <div class="product-box-name">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4276">
                                                            7.7V Replacement Battery for Asus C21N16...
                                                        </a>
                                                    </div>
                                                    <span class="productBasePrice">
                                                        &pound;76.96
                                                    </span>
                                                </div>
                                                <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4276">
                                                    More details
                                                </a>
                                                <div class="buynow-index">
                                                    <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=4276">
                                                        <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                            &nbsp;Buy Now&nbsp;
                                                        </span>
                                                    </a>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="centerBoxContentsNew float-left" style="width:33%;">
                                            <div class="c-product-wrp">
                                                <div class="columnar-product-info">
                                                    <div class="columnar-product-img">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4283">
                                                            <img alt="15.2V Replacement Battery for Asus 4ICP4/59/134 Rog STRIX G702VT G702VS G702VSK Series 76Wh" height="100" src="images/Laptopbattery/ASUBN040.jpg" title=" 15.2V Replacement Battery for Asus 4ICP4/59/134 Rog STRIX G702VT G702VS G702VSK Series 76Wh " width="100">
                                                        </a>
                                                    </div>
                                                    <div class="product-box-name">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4283">
                                                            15.2V Replacement Battery for Asus 4ICP4...
                                                        </a>
                                                    </div>
                                                    <span class="productBasePrice">
                                                        &pound;47.96
                                                    </span>
                                                </div>
                                                <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4283">
                                                    More details
                                                </a>
                                                <div class="buynow-index">
                                                    <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=4283">
                                                        <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                            &nbsp;Buy Now&nbsp;
                                                        </span>
                                                    </a>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="centerBoxContentsNew float-left no-right-margin" style="width:33%;">
                                            <div class="c-product-wrp">
                                                <div class="columnar-product-info">
                                                    <div class="columnar-product-img">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4278">
                                                            <img alt="15.2V Replacement Battery for Asus C41N1541 0B200-02070200 Rog GL702 STRIX GL702V GL702VM Series" height="100" src="images/Laptopbattery/ASUBN040.jpg" title=" 15.2V Replacement Battery for Asus C41N1541 0B200-02070200 Rog GL702 STRIX GL702V GL702VM Series " width="100">
                                                        </a>
                                                    </div>
                                                    <div class="product-box-name">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4278">
                                                            15.2V Replacement Battery for Asus C41N1...
                                                        </a>
                                                    </div>
                                                    <span class="productBasePrice">
                                                        &pound;47.96
                                                    </span>
                                                </div>
                                                <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4278">
                                                    More details
                                                </a>
                                                <div class="buynow-index">
                                                    <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=4278">
                                                        <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                            &nbsp;Buy Now&nbsp;
                                                        </span>
                                                    </a>
                                                </div>
                                            </div>
                                        </div>
                                        <br class="clearBoth">
                                        <div class="centerBoxContentsNew float-left" style="width:33%;">
                                            <div class="c-product-wrp">
                                                <div class="columnar-product-info">
                                                    <div class="columnar-product-img">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4282">
                                                            <img alt="15.2V Replacement Battery for Asus 0B200-02070400 Rog STRIX G702VM G702VMK Series 76Wh" height="100" src="images/Laptopbattery/ASUBN040.jpg" title=" 15.2V Replacement Battery for Asus 0B200-02070400 Rog STRIX G702VM G702VMK Series 76Wh " width="100">
                                                        </a>
                                                    </div>
                                                    <div class="product-box-name">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4282">
                                                            15.2V Replacement Battery for Asus 0B200...
                                                        </a>
                                                    </div>
                                                    <span class="productBasePrice">
                                                        &pound;47.96
                                                    </span>
                                                </div>
                                                <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4282">
                                                    More details
                                                </a>
                                                <div class="buynow-index">
                                                    <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=4282">
                                                        <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                            &nbsp;Buy Now&nbsp;
                                                        </span>
                                                    </a>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="centerBoxContentsNew float-left" style="width:33%;">
                                            <div class="c-product-wrp">
                                                <div class="columnar-product-info">
                                                    <div class="columnar-product-img">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4281">
                                                            <img alt="15.2V Replacement Battery for Asus 0B200-02070300 Rog STRIX GL702ZC Series GL702ZC-GC204 76Wh" height="100" src="images/Laptopbattery/ASUBN040.jpg" title=" 15.2V Replacement Battery for Asus 0B200-02070300 Rog STRIX GL702ZC Series GL702ZC-GC204 76Wh " width="100">
                                                        </a>
                                                    </div>
                                                    <div class="product-box-name">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4281">
                                                            15.2V Replacement Battery for Asus 0B200...
                                                        </a>
                                                    </div>
                                                    <span class="productBasePrice">
                                                        &pound;47.96
                                                    </span>
                                                </div>
                                                <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4281">
                                                    More details
                                                </a>
                                                <div class="buynow-index">
                                                    <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=4281">
                                                        <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                            &nbsp;Buy Now&nbsp;
                                                        </span>
                                                    </a>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="centerBoxContentsNew float-left no-right-margin" style="width:33%;">
                                            <div class="c-product-wrp">
                                                <div class="columnar-product-info">
                                                    <div class="columnar-product-img">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4275">
                                                            <img alt="11.55V Replacement Battery for Asus B0B200-03580300 VivoBook Flip 14 TP420IA X1702ZA X421EQ Series" height="100" src="images/Laptopbattery/ASUBN037.jpg" title=" 11.55V Replacement Battery for Asus B0B200-03580300 VivoBook Flip 14 TP420IA X1702ZA X421EQ Series " width="100">
                                                        </a>
                                                    </div>
                                                    <div class="product-box-name">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4275">
                                                            11.55V Replacement Battery for Asus B0B2...
                                                        </a>
                                                    </div>
                                                    <span class="productBasePrice">
                                                        &pound;44.96
                                                    </span>
                                                </div>
                                                <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4275">
                                                    More details
                                                </a>
                                                <div class="buynow-index">
                                                    <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=4275">
                                                        <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                            &nbsp;Buy Now&nbsp;
                                                        </span>
                                                    </a>
                                                </div>
                                            </div>
                                        </div>
                                        <br class="clearBoth">
                                        <div class="centerBoxContentsNew float-left" style="width:33%;">
                                            <div class="c-product-wrp">
                                                <div class="columnar-product-info">
                                                    <div class="columnar-product-img">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4279">
                                                            <img alt="15.2V Replacement Battery for Asus C41PP91 BATTGL702 Rog STRIX GL702VMK GL702VS Series 76Wh" height="100" src="images/Laptopbattery/ASUBN040.jpg" title=" 15.2V Replacement Battery for Asus C41PP91 BATTGL702 Rog STRIX GL702VMK GL702VS Series 76Wh " width="100">
                                                        </a>
                                                    </div>
                                                    <div class="product-box-name">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4279">
                                                            15.2V Replacement Battery for Asus C41PP...
                                                        </a>
                                                    </div>
                                                    <span class="productBasePrice">
                                                        &pound;47.96
                                                    </span>
                                                </div>
                                                <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4279">
                                                    More details
                                                </a>
                                                <div class="buynow-index">
                                                    <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=4279">
                                                        <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                            &nbsp;Buy Now&nbsp;
                                                        </span>
                                                    </a>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="centerBoxContentsNew float-left" style="width:33%;">
                                            <div class="c-product-wrp">
                                                <div class="columnar-product-info">
                                                    <div class="columnar-product-img">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4277">
                                                            <img alt="7.7V Replacement Battery for Asus C21N1701 C21PQC5 0B200-02640000 VivoBook S14 K406UA V406U S406UA" height="100" src="images/Laptopbattery/ASUBN039.jpg" title=" 7.7V Replacement Battery for Asus C21N1701 C21PQC5 0B200-02640000 VivoBook S14 K406UA V406U S406UA " width="100">
                                                        </a>
                                                    </div>
                                                    <div class="product-box-name">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4277">
                                                            7.7V Replacement Battery for Asus C21N17...
                                                        </a>
                                                    </div>
                                                    <span class="productBasePrice">
                                                        &pound;47.96
                                                    </span>
                                                </div>
                                                <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4277">
                                                    More details
                                                </a>
                                                <div class="buynow-index">
                                                    <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=4277">
                                                        <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                            &nbsp;Buy Now&nbsp;
                                                        </span>
                                                    </a>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="centerBoxContentsNew float-left no-right-margin" style="width:33%;">
                                            <div class="c-product-wrp">
                                                <div class="columnar-product-info">
                                                    <div class="columnar-product-img">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4280">
                                                            <img alt="15.2V Replacement Battery for Asus 0B200-02070000 Rog STRIX GL702VSK GL702VSK-R GL702VT Series 76Wh" height="100" src="images/Laptopbattery/ASUBN040.jpg" title=" 15.2V Replacement Battery for Asus 0B200-02070000 Rog STRIX GL702VSK GL702VSK-R GL702VT Series 76Wh " width="100">
                                                        </a>
                                                    </div>
                                                    <div class="product-box-name">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4280">
                                                            15.2V Replacement Battery for Asus 0B200...
                                                        </a>
                                                    </div>
                                                    <span class="productBasePrice">
                                                        &pound;47.96
                                                    </span>
                                                </div>
                                                <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=11_51&amp;products_id=4280">
                                                    More details
                                                </a>
                                                <div class="buynow-index">
                                                    <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=4280">
                                                        <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                            &nbsp;Buy Now&nbsp;
                                                        </span>
                                                    </a>
                                                </div>
                                            </div>
                                        </div>
                                        <br class="clearBoth">
                                        <div class="clearBoth">
                                        </div>
                                    </div>
                                    <!-- eof: whats_new -->
                                    <!-- bof: featured products  -->
                                    <div class="centerBoxWrapper carousel-box" id="featuredProducts">
                                        <h2 class="centerBoxHeading">
           Featured Products
                                        </h2>
                                        <div class="flexslider2 carousel">
                                            <ul class="slides">
                                                <li>
                                                    <div class="columnar-product-info">
                                                        <div class="columnar-product-img">
                                                            <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_15&amp;products_id=58">
                                                                <img alt="10.80V Replacement Power Tools battery for Makita BL1013 BL1014 3000mAh" height="100" src="images/PowerTool/TMK059_87V.jpg" title=" 10.80V Replacement Power Tools battery for Makita BL1013 BL1014 3000mAh " width="100">
                                                            </a>
                                                        </div>
                                                        <div class="product-box-name">
                                                            <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_15&amp;products_id=58">
                                                                10.80V Replacement Pow...
                                                            </a>
                                                        </div>
                                                        <span class="productBasePrice">
                                                            &pound;18.99
                                                        </span>
                                                    </div>
                                                    <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_15&amp;products_id=58">
                                                        More details
                                                    </a>
                                                    <div class="buynow-index">
                                                        <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=58">
                                                            <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                                &nbsp;Buy Now&nbsp;
                                                            </span>
                                                        </a>
                                                    </div>
                                                </li>
                                                <li>
                                                    <div class="columnar-product-info">
                                                        <div class="columnar-product-img">
                                                            <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_16&amp;products_id=151">
                                                                <img alt="24.00V Replacement Tools battery for Bosch 2 607 335 446 2 607 335 448 BAT240 3000mAh" height="100" src="images/PowerTool/TBS049_29H.jpg" title=" 24.00V Replacement Tools battery for Bosch 2 607 335 446 2 607 335 448 BAT240 3000mAh " width="100">
                                                            </a>
                                                        </div>
                                                        <div class="product-box-name">
                                                            <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_16&amp;products_id=151">
                                                                24.00V Replacement Too...
                                                            </a>
                                                        </div>
                                                        <span class="productBasePrice">
                                                            &pound;55.99
                                                        </span>
                                                    </div>
                                                    <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_16&amp;products_id=151">
                                                        More details
                                                    </a>
                                                    <div class="buynow-index">
                                                        <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=151">
                                                            <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                                &nbsp;Buy Now&nbsp;
                                                            </span>
                                                        </a>
                                                    </div>
                                                </li>
                                                <li>
                                                    <div class="columnar-product-info">
                                                        <div class="columnar-product-img">
                                                            <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=3&amp;products_id=31">
                                                                <img alt="Replacement battery for Panasonic CGR-DU06 CGR-DU07 VW-VBD070 CGR-DU06E/1B 600mAh" height="100" src="images/camcorder/wvps010.jpg" title=" Replacement battery for Panasonic CGR-DU06 CGR-DU07 VW-VBD070 CGR-DU06E/1B 600mAh " width="100">
                                                            </a>
                                                        </div>
                                                        <div class="product-box-name">
                                                            <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=3&amp;products_id=31">
                                                                Replacement battery fo...
                                                            </a>
                                                        </div>
                                                        <span class="productBasePrice">
                                                            &pound;19.98
                                                        </span>
                                                    </div>
                                                    <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=3&amp;products_id=31">
                                                        More details
                                                    </a>
                                                    <div class="buynow-index">
                                                        <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=31">
                                                            <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                                &nbsp;Buy Now&nbsp;
                                                            </span>
                                                        </a>
                                                    </div>
                                                </li>
                                                <li>
                                                    <div class="columnar-product-info">
                                                        <div class="columnar-product-img">
                                                            <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_15&amp;products_id=114">
                                                                <img alt="6000mAh Replacement battery for Makita BL1845 BL1860 BL1860B 194205-3" height="100" src="images/PowerTool/TM120K_002.jpg" title=" 6000mAh Replacement battery for Makita BL1845 BL1860 BL1860B 194205-3 " width="100">
                                                            </a>
                                                        </div>
                                                        <div class="product-box-name">
                                                            <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_15&amp;products_id=114">
                                                                6000mAh Replacement ba...
                                                            </a>
                                                        </div>
                                                        <span class="normalprice">
                                                            &pound;30.98
                                                        </span>
                                                        &nbsp;
                                                        <span class="productSpecialPrice">
                                                            &pound;26.99
                                                        </span>
                                                        <span class="productPriceDiscount">
                                                            <br>
                                                            Save:&nbsp;13% off
                                                        </span>
                                                    </div>
                                                    <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_15&amp;products_id=114">
                                                        More details
                                                    </a>
                                                    <div class="buynow-index">
                                                        <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=114">
                                                            <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                                &nbsp;Buy Now&nbsp;
                                                            </span>
                                                        </a>
                                                    </div>
                                                </li>
                                                <li>
                                                    <div class="columnar-product-info">
                                                        <div class="columnar-product-img">
                                                            <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_16&amp;products_id=145">
                                                                <img alt="Replacement Tools battery for Bosch 2 607 335 373 2 607 335 453 2 607 335 461 3000mAh" height="100" src="images/PowerTool/TBS031_29H.jpg" title=" Replacement Tools battery for Bosch 2 607 335 373 2 607 335 453 2 607 335 461 3000mAh " width="100">
                                                            </a>
                                                        </div>
                                                        <div class="product-box-name">
                                                            <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_16&amp;products_id=145">
                                                                Replacement Tools batt...
                                                            </a>
                                                        </div>
                                                        <span class="productBasePrice">
                                                            &pound;22.99
                                                        </span>
                                                    </div>
                                                    <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_16&amp;products_id=145">
                                                        More details
                                                    </a>
                                                    <div class="buynow-index">
                                                        <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=145">
                                                            <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                                &nbsp;Buy Now&nbsp;
                                                            </span>
                                                        </a>
                                                    </div>
                                                </li>
                                                <li>
                                                    <div class="columnar-product-info">
                                                        <div class="columnar-product-img">
                                                            <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=3_9&amp;products_id=50">
                                                                <img alt="Replacement battery for Panasonic VW-VBK360 VW-VBK360-K VW-VBK360GK 3440mAh" height="100" src="images/camcorder/VPS048.gif" title=" Replacement battery for Panasonic VW-VBK360 VW-VBK360-K VW-VBK360GK 3440mAh " width="100">
                                                            </a>
                                                        </div>
                                                        <div class="product-box-name">
                                                            <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=3_9&amp;products_id=50">
                                                                Replacement battery fo...
                                                            </a>
                                                        </div>
                                                        <span class="productBasePrice">
                                                            &pound;37.99
                                                        </span>
                                                    </div>
                                                    <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=3_9&amp;products_id=50">
                                                        More details
                                                    </a>
                                                    <div class="buynow-index">
                                                        <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=50">
                                                            <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                                &nbsp;Buy Now&nbsp;
                                                            </span>
                                                        </a>
                                                    </div>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="clearBoth">
                                        </div>
                                    </div>
                                    <!-- eof: featured products  -->
                                    <!-- bof: specials -->
                                    <div class="centerBoxWrapper" id="specialsDefault">
                                        <h2 class="centerBoxHeading">
           Clearance Sale
                                        </h2>
                                        <div class="centerBoxContentsSpecials float-left no-right-margin" style="width:50%;">
                                            <div class="c-product-wrp">
                                                <div class="columnar-product-info">
                                                    <div class="columnar-product-img">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_15&amp;products_id=114">
                                                            <img alt="6000mAh Replacement battery for Makita BL1845 BL1860 BL1860B 194205-3" height="100" src="images/PowerTool/TM120K_002.jpg" title=" 6000mAh Replacement battery for Makita BL1845 BL1860 BL1860B 194205-3 " width="100">
                                                        </a>
                                                    </div>
                                                    <div class="product-box-name">
                                                        <a class="p-name-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_15&amp;products_id=114">
                                                            6000mAh Replacement ba...
                                                        </a>
                                                    </div>
                                                    <span class="normalprice">
                                                        &pound;30.98
                                                    </span>
                                                    &nbsp;
                                                    <span class="productSpecialPrice">
                                                        &pound;26.99
                                                    </span>
                                                    <span class="productPriceDiscount">
                                                        <br>
                                                        Save:&nbsp;13% off
                                                    </span>
                                                </div>
                                                <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_15&amp;products_id=114">
                                                </a>
                                                <div class="buynow-index">
                                                    <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=114">
                                                        <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                            &nbsp;Buy Now&nbsp;
                                                        </span>
                                                    </a>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="centerBoxContentsSpecials float-left no-right-margin" style="width:50%;">
                                            <div class="c-product-wrp">
                                                <div class="columnar-product-info">
                                                    <div class="columnar-product-img">
                                                        <a href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_16&amp;products_id=164">
                                                            <img alt="Replacement battery for Bosch 2 607 335 533 2 607 335 534 BAT159 3000mAh" height="100" src="images/PowerTool/TBS037_29H.jpg" title=" Replacement battery for Bosch 2 607 335 533 2 607 335 534 BAT159 3000mAh " width="100">
                                                        </a>
                                                    </div>
                                                    <div class="product-box-name">
                                                        <a class="p-name-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_16&amp;products_id=164">
                                                            Replacement battery fo...
                                                        </a>
                                                    </div>
                                                    <span class="normalprice">
                                                        &pound;18.99
                                                    </span>
                                                    &nbsp;
                                                    <span class="productSpecialPrice">
                                                        &pound;15.99
                                                    </span>
                                                    <span class="productPriceDiscount">
                                                        <br>
                                                        Save:&nbsp;16% off
                                                    </span>
                                                </div>
                                                <a class="detail-link" href="https://www.powbattery.com/index.php?main_page=product_info&amp;cPath=13_16&amp;products_id=164">
                                                </a>
                                                <div class="buynow-index">
                                                    <a href="https://www.powbattery.com/index.php?main_page=index&amp;action=buy_now&amp;products_id=164">
                                                        <span class="cssButton normal_button button button_buy_now" onmouseout="this.className='cssButton normal_button button  button_buy_now'" onmouseover="this.className='cssButtonHover normal_button button  button_buy_now button_buy_nowHover'">
                                                            &nbsp;Buy Now&nbsp;
                                                        </span>
                                                    </a>
                                                </div>
                                            </div>
                                        </div>
                                        <br class="clearBoth">
                                        <div class="clearBoth">
                                        </div>
                                    </div>
                                    <!-- eof: specials -->
                                </div>
                            </div>
                        </div>
                        <!-- /table-->
                    </div>
                </div>
            </div>
        </div>
        <!--bof- banner #6 display -->
        <!--eof- banner #6 display -->
        <div class="container-fluid">
            <div class="body-bg">
                <div class="mainWrapper">
                    <div class="bottom-wrapper">
                        <div id="footer">
                            <!--bof-navigation display -->
                            <div id="navSuppWrapper">
                                <!--BOF footer menu display-->
                                <table class="bottom-columns">
                                    <tbody>
                                        <tr>
                                            <td class="menuTitle">
            We accept
                                            </td>
                                            <td class="menuTitle">
                                                Contact Information
                                            </td>
                                            <td class="menuTitle">
                                                Site Information
                                            </td>
                                            <td class="menuTitle">
                                                Deliveries &amp; Returns
                                            </td>
                                            <td class="menuTitle">
                                            </td>
                                        </tr>
                                        <tr>
                                            <td class="column zero">
                                                <img alt="" src="images/imgECheck.gif">
                                                <br>
                                            </td>
                                            <td class="column first">
                                                [email protected]
                                                <br>
                                                <br>
                                                Any question, please
                                                <a href="https://www.powbattery.com/index.php?main_page=contact_us">
                                                    contact us
                                                </a>
                                                .
                                                <br>
                                                <br>
                                            </td>
                                            <td class="column second">
                                                <ul>
                                                    <li>
                                                        <a href="https://www.powbattery.com/">
                                                            Home
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=featured_products">
                                                            Featured Products
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=specials">
                                                            Specials
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=products_new">
                                                            New Products
                                                        </a>
                                                    </li>
                                                </ul>
                                            </td>
                                            <td class="column third">
                                                <ul>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=contact_us">
                                                            Contact Us
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=shippinginfo">
                                                            Payment &amp; Shipping
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=page_2">
                                                            Return &amp; Warranty
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a href="https://www.powbattery.com/index.php?main_page=account">
                                                            My Account
                                                        </a>
                                                    </li>
                                                </ul>
                                            </td>
                                            <td class="column fourth">
                                                <ul>
                                                    <li>
                                                        <a class="twitter-icon" href="https://www.twitter.com" target="_blank">
                                                            Follow us on Twitter
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a class="facebook-icon" href="https://www.facebook.com" target="_blank">
                                                            Facebook page
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <a class="blog-icon" href="https://www.powbattery.com/">
                                                            Our blog and news
                                                        </a>
                                                    </li>
                                                    <li>
                                                        <span id="siteseal">
                                                            <script async="" src="https://seal.godaddy.com/getSeal?sealID=aXk4pFIin0QS8Ixjlf6uIF4bLalNqvADNdec6NZlzDs7tpVo159pSl1aXrOu" type="text/javascript">
                                                            </script>
                                                        </span>
                                                    </li>
                                                </ul>
                                            </td>
                                        </tr>
                                    </tbody>
                                </table>
                                <div class="bottom-icons">
                                </div>
                                <!--EOF footer menu display-->
                                <div class="clearBoth">
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="clearBoth">
            </div>
            <!--eof-navigation display -->
            <div class="bottom-wrapper mainWrapper footer-links">
                <!--bof-navigation display -->
                <ul class="footer-links list-style-none float-right">
                    <li>
                        <a href="https://www.powbattery.com/index.php?main_page=contact_us">
       Contact Us
                        </a>
                    </li>
                    <li>
                        <a href="https://www.powbattery.com/index.php?main_page=shippinginfo">
                            Payment &amp; Shipping
                        </a>
                    </li>
                    <li>
                        <a href="https://www.powbattery.com/index.php?main_page=page_2">
                            Return &amp; Warranty
                        </a>
                    </li>
                    <li>
                        <a href="https://www.powbattery.com/index.php?main_page=site_map">
                            Site Map
                        </a>
                    </li>
                </ul>
                <!--eof-navigation display -->
                <div class="visible-phone">
                    <a class="v-site-link" href="trigger.php?r_link=%2F">
                        <strong>
       Desktop Version
                        </strong>
                    </a>
                    <!--bof- social icons -->
                    <div class="padding social-links">
                        <a class="twitter-icon" href="http://twitter.com" target="_blank">
                            <img alt="twitter" height="25" src="includes/templates/mobishop_green/images/spacer.gif" width="25">
                        </a>
                        <a class="facebook-icon" href="http://facebook.com" target="_blank">
                            <img alt="facebook" height="25" src="includes/templates/mobishop_green/images/spacer.gif" width="25">
                        </a>
                        <a class="blog-icon" href="http://www.powbattery.com/" target="_blank">
                            <img alt="powbattery" height="25" src="includes/templates/mobishop_green/images/spacer.gif" width="25">
                        </a>
                    </div>
                    <div class="clearBoth">
                    </div>
                </div>
                <!--eof- social icons -->
                <!--bof- site copyright display -->
                <div class="legalCopyright" id="siteinfoLegal">
     Copyright &copy; 2024
                    <a href="https://www.powbattery.com/index.php?main_page=index" target="_blank">
                        powbattery.com
                    </a>
                    .
                </div>
                <!--eof- site copyright display -->
                <!--bof-ip address display -->
                <div id="siteinfoIP">
     Your IP Address is:   178.79.185.141
                </div>
                <!--eof-ip address display -->
                <div class="clearBoth">
                    <img alt="powbattery" height="1" src="includes/templates/mobishop_green/images/spacer.gif" width="2">
                </div>
            </div>
            <!--bof- -->
            <div>
            </div>
            <!--eof- -->
        </div>
        <!--bof- parse time display -->
        <!--eof- parse time display -->
        <!--bof- banner #6 display -->
        <!--eof- banner #6 display -->
    </body>
</html>

Latest requests

# Url Url Source Date
1 https://www.powbattery.com/ 2024-05-31 12:42:15
2 https://thebolditalic.com/?gi=10b2… 2024-05-31 12:42:13
3 https://thebolditalic.com/?gi=1ad1… 2024-05-31 12:42:13
4 https://thebolditalic.com/?gi=58e6… 2024-05-31 12:42:12
5 https://thebolditalic.com/?gi=606d… 2024-05-31 12:42:12
6 https://thebolditalic.com/?gi=1ffe… 2024-05-31 12:42:10
7 https://thebolditalic.com/?gi=54b0… 2024-05-31 12:42:09
8 https://thebolditalic.com/?gi=6477… 2024-05-31 12:42:09
9 https://thebolditalic.com/?gi=b6d9… 2024-05-31 12:42:08
10 https://thebolditalic.com/?gi=daf1… 2024-05-31 12:42:07
11 https://thebolditalic.com/?gi=d552… 2024-05-31 12:42:06
12 https://thebolditalic.com/?gi=5ba9… 2024-05-31 12:42:05
13 https://thebolditalic.com/?gi=fd7b… 2024-05-31 12:42:05
14 https://thebolditalic.com/?gi=3cb7… 2024-05-31 12:42:04
15 https://thebolditalic.com/?gi=e26e… 2024-05-31 12:42:03
16 https://thebolditalic.com/?gi=cf71… 2024-05-31 12:42:02
17 https://stephenh654aqf2.bloggosite… 2024-05-31 12:42:02
18 https://thebolditalic.com/?gi=5c90… 2024-05-31 12:42:01
19 https://thebolditalic.com/?gi=69fe… 2024-05-31 12:42:00
20 https://thebolditalic.com/?gi=5ae6… 2024-05-31 12:42:00