<html slick-uniqueid="3"><head><meta content="text/html; charset=UTF-8" http-equiv="Content-Type"><title>XML Sitemap File</title><script type="text/javascript" src="sitemap_files/mootools-core.js"></script><script type="text/javascript" src="sitemap_files/mootools-more.js"></script><style type="text/css">
    
    <!--
    h1 {
        font-weight:bold;
        font-size:1.5em;
        margin-bottom:0;
        margin-top:1px;
    }
    h2 {
        font-weight:bold;
        font-size:1.2em;
        margin-bottom:0;
        color:#707070;
        margin-top:1px;
    }
    p.sml {
        font-size:0.8em;
        margin-top:0;
    }
    .sortup {
        background-position: right center;
        background-image: url(http://localhost/smilecaredentalcentre.co.uk/components/com_xmap/assets/images/sortup.gif);
        background-repeat: no-repeat;
        font-style:italic;
        white-space:pre;
    }
    .sortdown {
        background-position: right center;
        background-image: url(http://localhost/smilecaredentalcentre.co.uk/components/com_xmap/assets/images/sortdown.gif);
        background-repeat: no-repeat;
        font-style:italic;
        white-space:pre;
    }
    table.copyright {
        width:100%;
        border-top:1px solid #ddad08;
        margin-top:1em;
        text-align:center;
        padding-top:1em;
        vertical-align:top;
    }
    table.data {
        font-size: 12px;
        width: 100%;
        border: 1px solid #000000;
        clear:both;
    }
    table.data tr.header td {
        background-color: #CCCCCC;
        color: #FFFFFF;
        font-weight: bold;
        font-size: 14px;
    }
    .divoptions {
        background:#fff;
        border:1px solid #ccc;
        position:absolute;
        padding:5px;
    }
    .divoptions table {
        width:100%;
    }
    .divoptions table td {
        padding:0px;
        border: 1px solid #ffffff;
        border-bottom:1px solid #ccc;
        font-size: 12px;
    }
    .divoptions table td:hover {
        border: 1px solid blue;
    }
    .divoptions table td a {
        text-decoration:none;
        display:block;
        width:100%;
    }
    .editable {
        cursor:pointer;
        background: url(http://localhost/smilecaredentalcentre.co.uk/components/com_xmap/assets/images/arrow.gif) top right no-repeat;
        padding-right:18px;
        padding-right:18px;
        border:1px solid #ffffff;
    }
    .editable:hover {
        border-color:#cccccc;
    }
    #title {
        float:left;
        display:inline-block;
        width:29%;
    }
    #instructions {
        float:left;
        display:inline-block;
        font-size: 11px;
        width:70%;
        margin-bottom:10px;
    }
    #instructions>div {
        border-radius: 5px;
        padding: 10px;
        background-color: #ccc;
    }
    #filter_options form { margin:0; }
    #filter_options {border-radius: 5px; background-color:#fff;padding: 3px;}
    .toggle-excluded {
        width: 16px; height: 16px; display: inline-block; float: left; cursor: pointer;margin-right: 5px;
        background: url(http://localhost/smilecaredentalcentre.co.uk/components/com_xmap/assets/images/tick.png) no-repeat;
    }
    .excluded {
      text-decoration:line-through;
    }
    .excluded .toggle-excluded {
        background: url(http://localhost/smilecaredentalcentre.co.uk/components/com_xmap/assets/images/unpublished.png) no-repeat;
    }
    div.imagelist {
        border: 1px solid #ccc;
        background-color: #eee;
        padding: 5px;
        width: auto;float:left;
    }
    span.images_count {
        border: 1px solid #004080;
        background-color: #0000FF;
        color: #fff;
        margin: 0 5px;
        cursor: pointer;
        padding:2px;
        float: left;
    }
    -->
    
</style><script language="JavaScript">
    
    var selectedColor = "blue";
    var defaultColor = "black";
    var hdrRows = 1;
    var numeric = '..';
    var desc = '..';
    var html = '..';
    var freq = '..';

    function initXsl(tabName,fileType) {
        hdrRows = 1;

        if(fileType=="sitemap") {
            numeric = ".3.";
            desc = ".1.";
            html = ".0.";
            freq = ".2.";
            initTable(tabName);
            setSort(tabName, 0, 1);
        }
        else {
            desc = ".1.";
            html = ".0.";
            initTable(tabName);
            setSort(tabName, 0, 1);
        }

    }

    function initTable(tabName) {
        var theTab = document.getElementById(tabName);
        for(r=0;r<hdrRows;r++)
            for(c=0;c<theTab.rows[r].cells.length;c++)
                if((r+theTab.rows[r].cells[c].rowSpan)>hdrRows)
                    hdrRows=r+theTab.rows[r].cells[c].rowSpan;
        for(r=0;r<hdrRows; r++){
            colNum = 0;
            for(c=0;c<theTab.rows[r].cells.length;c++, colNum++){
                if(theTab.rows[r].cells[c].colSpan<2){
                    theCell = theTab.rows[r].cells[c];
                    rTitle = theCell.innerHTML.replace(/<[^>]+>|&nbsp;/g,'');
                    if(rTitle>""){
                        theCell.title = "Change sort order for " + rTitle;
                        theCell.onmouseover = function(){setCursor(this, "selected")};
                        theCell.onmouseout = function(){setCursor(this, "default")};
                        var sortParams = 15; // bitmapped: numeric|desc|html|freq
                        if(numeric.indexOf("."+colNum+".")>-1) sortParams -= 1;
                        if(desc.indexOf("."+colNum+".")>-1) sortParams -= 2;
                        if(html.indexOf("."+colNum+".")>-1) sortParams -= 4;
                        if(freq.indexOf("."+colNum+".")>-1) sortParams -= 8;
                        theCell.onclick = new Function("sortTable(this,"+(colNum+r)+","+hdrRows+","+sortParams+")");
                    }
                } else {
                    colNum = colNum+theTab.rows[r].cells[c].colSpan-1;
                }
            }
        }
    }

    function setSort(tabName, colNum, sortDir) {
        var theTab = document.getElementById(tabName);
        theTab.rows[0].sCol = colNum;
        theTab.rows[0].sDir = sortDir;
        if (sortDir)
            theTab.rows[0].cells[colNum].className='sortdown'
        else
            theTab.rows[0].cells[colNum].className='sortup';
    }

    function setCursor(theCell, mode){
        rTitle = theCell.innerHTML.replace(/<[^>]+>|&nbsp;|\W/g,'');
        if(mode=="selected"){
            if(theCell.style.color!=selectedColor)
                defaultColor = theCell.style.color;
            theCell.style.color = selectedColor;
            theCell.style.cursor = "pointer";
            window.status = "Click to sort by '"+rTitle+"'";
        } else {
            theCell.style.color = defaultColor;
            theCell.style.cursor = "";
            window.status = "";
        }
    }

    function sortTable(theCell, colNum, hdrRows, sortParams){
        var typnum = !(sortParams & 1);
        sDir = !(sortParams & 2);
        var typhtml = !(sortParams & 4);
        var typfreq = !(sortParams & 8);
        var tBody = theCell.parentNode;
        while(tBody.nodeName!="TBODY"){
            tBody = tBody.parentNode;
        }
        var tabOrd = new Array();
        if(tBody.rows[0].sCol==colNum) sDir = !tBody.rows[0].sDir;
        if (tBody.rows[0].sCol>=0)
            tBody.rows[0].cells[tBody.rows[0].sCol].className='';
        tBody.rows[0].sCol = colNum;
        tBody.rows[0].sDir = sDir;
        if (sDir)
            tBody.rows[0].cells[colNum].className='sortdown'
        else
            tBody.rows[0].cells[colNum].className='sortup';
        for(i=0,r=hdrRows;r<tBody.rows.length;i++,r++){
            colCont = tBody.rows[r].cells[colNum].innerHTML;
            if(typhtml) colCont = colCont.replace(/<[^>]+>/g,'');
            if(typnum) {
                colCont*=1;
                if(isNaN(colCont)) colCont = 0;
            }
            if(typfreq) {
                switch(colCont.toLowerCase()) {
                    case "always":  { colCont=0; break; }
                    case "hourly":  { colCont=1; break; }
                    case "daily":   { colCont=2; break; }
                    case "weekly":  { colCont=3; break; }
                    case "monthly": { colCont=4; break; }
                    case "yearly":  { colCont=5; break; }
                    case "never":   { colCont=6; break; }
                }
            }
            tabOrd[i] = [r, tBody.rows[r], colCont];
        }
        tabOrd.sort(compRows);
        for(i=0,r=hdrRows;r<tBody.rows.length;i++,r++){
            tBody.insertBefore(tabOrd[i][1],tBody.rows[r]);
        }
        window.status = "";
    }

    function compRows(a, b){
        if(sDir){
            if(a[2]>b[2]) return -1;
            if(a[2]<b[2]) return 1;
        } else {
            if(a[2]>b[2]) return 1;
            if(a[2]<b[2]) return -1;
        }
        return 0;
    }


    var divOptions=null;
    function showOptions (cell,options,uid,itemid,e) {
        // var div = document.getElementById('div'+options);
        var div = $('div'+options);
        pos = div.getPosition();
        if ( divOptions != null && div != divOptions ) {
            closeOptions();
        }
        var myCell = $(cell);
        div.style.top = (myCell.getTop()+20)+'px';
        div.style.left = myCell.getLeft()+'px';
        var dimensions = myCell.getSize();
        div.style.width=dimensions.x+'px';
        div.style.display='';
        div.uid=uid;
        div.itemid=itemid;
        div.cell=myCell;
        divOptions=div;

    }
    function closeOptions() {
        divOptions.style.display='none';
        divOptions=null;
    }

    function changeProperty(el,property) {
        new Request.JSON({
            url: '/smilecaredentalcentre.co.uk/index.php/component/xmap/?format=json&task=ajax.editElement&action=changeProperty',
            onComplete: checkChangeResult.bind(divOptions),
            method: 'get'
        }).send('4fc8c41431e79f3819c42b18f8f3ff1f=1&id='+sitemapid+'&uid='+divOptions.uid+'&itemid='+divOptions.itemid+'&property='+property+'&value='+el.innerHTML);
        divOptions.cell.innerHTML=el.innerHTML;
        divOptions.style.display='none';
        return false;
    }

    function toggleExcluded(el,itemid, uid){
        row = $(el).getParent('tr');
        new Request.JSON({
            url: '/smilecaredentalcentre.co.uk/index.php/component/xmap/?format=json&task=ajax.editElement&action=toggleElement',
            onComplete: checkToggleExcluded.bind(row),
            method: 'get'
        }).send('4fc8c41431e79f3819c42b18f8f3ff1f=1&id='+sitemapid+'&uid='+uid+'&itemid='+itemid);
    }

    function checkChangeResult(result,xmlResponse) {
    }

    function checkToggleExcluded(result,xmlResponse) {
        if (result.result == 'OK') {
            if (result.state == 1) {
                this.removeClass('excluded');
            } else {
                this.addClass('excluded');
            }
        }
    }


    window.addEvent('domready',function(){
        $$('div.imagelist').each(function(div){
            div.slide = new Fx.Slide(div).hide();
        })
        $$('span.images_count').each(function(span){
            span.addEvent('click',function(){
                $(this.parentNode).getElement('div.imagelist').slide.toggle();
            });
        })
    });
    var sitemapid=1;

    
</script></head><body onload="initXsl('table0','sitemap');"><div id="header"><div id="title"><h1 id="head1">sitemap</h1><span class="number_urls">Number of URLs in this Sitemap: 89</span></div><div id="instructions"><div><p>This
 is your XML sitemap. You can submit the url displayed bellow to the 
search engines. You can also change the priority or change frequency for
 each item on the sitemap. If you need any help please read our <a href="http://www.jooxmap.com/documentation.html">documentation</a> or post your questions in our <a href="http://www.jooxmap.com/forum/index.html">forum</a></p><p dir="ltr"><b>Sitemap URL</b>: /smilecaredentalcentre.co.uk/index.php?option=com_xmap&amp;view=xml&amp;id=1</p><div id="filter_options"><form action="/smilecaredentalcentre.co.uk/index.php/component/xmap/xml?view=xml" method="get"><input value="com_xmap" name="option" type="hidden"><input value="xml" name="view" type="hidden"><input value="1" name="id" type="hidden"><label><input name="filter_showtitle" value="1" checked="checked" onclick="this.form.submit();" type="checkbox">Show titles</label><label><input name="filter_showexcluded" value="1" checked="checked" onclick="this.form.submit();" type="checkbox">Show excluded items</label></form></div></div></div><div style="width:100%;clear:both;height:1px;"></div></div><table class="data" id="table0"><tbody><tr class="header"><td style="" class="sortdown" title="Change sort order for Title / URL">Title / URL</td><td title="Change sort order for Last modification date">Last modification date</td><td title="Change sort order for Change freq.">Change freq.</td><td title="Change sort order for Priority">Priority</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'101','itemid101')" class="toggle-excluded"></span><div class="item_title">Home</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/">http://localhost/smilecaredentalcentre.co.uk/</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid101','101',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid101','101',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'102','itemid102')" class="toggle-excluded"></span><div class="item_title">About Us</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid102','102',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid102','102',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'115','itemid115')" class="toggle-excluded"></span><div class="item_title">The Team</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/the-team">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/the-team</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid115','115',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid115','115',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'116','itemid116')" class="toggle-excluded"></span><div class="item_title">How We Work</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/how-we-work">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/how-we-work</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid116','116',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid116','116',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'117','itemid117')" class="toggle-excluded"></span><div class="item_title">Awards</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/awards">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/awards</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid117','117',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid117','117',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'118','itemid118')" class="toggle-excluded"></span><div class="item_title">Technology &amp; Facilities</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/technology-facilities">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/technology-facilities</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid118','118',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid118','118',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'124','itemid124')" class="toggle-excluded"></span><div class="item_title">Diagnostic equipment</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/technology-facilities/diagnostic-equipment">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/technology-facilities/diagnostic-equipment</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid124','124',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid124','124',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'125','itemid125')" class="toggle-excluded"></span><div class="item_title">Treatment equipment</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/technology-facilities/treatment-equipment">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/technology-facilities/treatment-equipment</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid125','125',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid125','125',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'126','itemid126')" class="toggle-excluded"></span><div class="item_title">General equipment</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/technology-facilities/general-equipment">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/technology-facilities/general-equipment</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid126','126',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid126','126',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'119','itemid119')" class="toggle-excluded"></span><div class="item_title">Price Guide</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/price-guide">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/price-guide</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid119','119',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid119','119',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'120','itemid120')" class="toggle-excluded"></span><div class="item_title">Dental Plans</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/dental-plans">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/dental-plans</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid120','120',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid120','120',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'129','itemid129')" class="toggle-excluded"></span><div class="item_title">Denplan Care Plan</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/dental-plans/denplan-care-plan">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/dental-plans/denplan-care-plan</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid129','129',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid129','129',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'130','itemid130')" class="toggle-excluded"></span><div class="item_title">Smilecare Dental Plan</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/dental-plans/smilecare-dental-plan">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/dental-plans/smilecare-dental-plan</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid130','130',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid130','130',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'121','itemid121')" class="toggle-excluded"></span><div class="item_title">Our Guarantee</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/our-guarantee">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/our-guarantee</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid121','121',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid121','121',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'128','itemid128')" class="toggle-excluded"></span><div class="item_title">Terms and conditions</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/our-guarantee/terms-and-conditions">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/our-guarantee/terms-and-conditions</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid128','128',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid128','128',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'122','itemid122')" class="toggle-excluded"></span><div class="item_title">0% Dental Loan</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/0-dental-loan">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/0-dental-loan</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid122','122',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid122','122',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'123','itemid123')" class="toggle-excluded"></span><div class="item_title">Career Opportunities</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/career-opportunities">http://localhost/smilecaredentalcentre.co.uk/index.php/about-us/career-opportunities</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid123','123',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid123','123',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'103','itemid103')" class="toggle-excluded"></span><div class="item_title">About You</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/about-you">http://localhost/smilecaredentalcentre.co.uk/index.php/about-you</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid103','103',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid103','103',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'104','itemid104')" class="toggle-excluded"></span><div class="item_title">Treatments</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid104','104',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid104','104',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'131','itemid131')" class="toggle-excluded"></span><div class="item_title">General Dentistry</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid131','131',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid131','131',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'140','itemid140')" class="toggle-excluded"></span><div class="item_title">Fresh Breath</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/fresh-breath">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/fresh-breath</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid140','140',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid140','140',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'141','itemid141')" class="toggle-excluded"></span><div class="item_title">Gum Disease</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/gum-disease">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/gum-disease</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid141','141',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid141','141',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'142','itemid142')" class="toggle-excluded"></span><div class="item_title">Tooth Decay</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/tooth-decay">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/tooth-decay</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid142','142',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid142','142',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'143','itemid143')" class="toggle-excluded"></span><div class="item_title">Tooth Sensitivity</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/tooth-sensitivity">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/tooth-sensitivity</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid143','143',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid143','143',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'144','itemid144')" class="toggle-excluded"></span><div class="item_title">Replacing Missing Teeth</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/replacing-missing-teeth">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/replacing-missing-teeth</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid144','144',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid144','144',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'148','itemid148')" class="toggle-excluded"></span><div class="item_title">Dental Implants</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/replacing-missing-teeth/dental-implants">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/replacing-missing-teeth/dental-implants</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid148','148',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid148','148',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'149','itemid149')" class="toggle-excluded"></span><div class="item_title">Bridges</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/replacing-missing-teeth/bridges">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/replacing-missing-teeth/bridges</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid149','149',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid149','149',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'150','itemid150')" class="toggle-excluded"></span><div class="item_title">Dentures</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/replacing-missing-teeth/dentures">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/replacing-missing-teeth/dentures</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid150','150',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid150','150',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'145','itemid145')" class="toggle-excluded"></span><div class="item_title">Restoring Damaged Teeth</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/restoring-damaged-teeth">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/restoring-damaged-teeth</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid145','145',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid145','145',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'151','itemid151')" class="toggle-excluded"></span><div class="item_title">Silver Fillings</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/restoring-damaged-teeth/silver-fillings">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/restoring-damaged-teeth/silver-fillings</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid151','151',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid151','151',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'152','itemid152')" class="toggle-excluded"></span><div class="item_title">White Fillings</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/restoring-damaged-teeth/white-fillings">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/restoring-damaged-teeth/white-fillings</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid152','152',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid152','152',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'153','itemid153')" class="toggle-excluded"></span><div class="item_title">Crowns</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/restoring-damaged-teeth/crowns">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/restoring-damaged-teeth/crowns</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid153','153',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid153','153',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'154','itemid154')" class="toggle-excluded"></span><div class="item_title">Inlays and Onlays</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/restoring-damaged-teeth/inlays-and-onlays">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/restoring-damaged-teeth/inlays-and-onlays</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid154','154',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid154','154',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'146','itemid146')" class="toggle-excluded"></span><div class="item_title">Root Canal Treatment</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/root-canal-treatment">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/root-canal-treatment</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid146','146',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid146','146',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'147','itemid147')" class="toggle-excluded"></span><div class="item_title">Babies and Children</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/babies-and-children">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/babies-and-children</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid147','147',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid147','147',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'155','itemid155')" class="toggle-excluded"></span><div class="item_title">Baby Bottle Tooth Decay</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/babies-and-children/baby-bottle-tooth-decay">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/babies-and-children/baby-bottle-tooth-decay</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid155','155',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid155','155',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'156','itemid156')" class="toggle-excluded"></span><div class="item_title">Fissure Sealants</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/babies-and-children/fissure-sealants">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/babies-and-children/fissure-sealants</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid156','156',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid156','156',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'157','itemid157')" class="toggle-excluded"></span><div class="item_title">Topical Fluoride Application</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/babies-and-children/topical-fluoride-application">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/babies-and-children/topical-fluoride-application</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid157','157',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid157','157',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'158','itemid158')" class="toggle-excluded"></span><div class="item_title">Sports Mouthguards</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/babies-and-children/sports-mouthguards">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/general-dentistry/babies-and-children/sports-mouthguards</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid158','158',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid158','158',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'132','itemid132')" class="toggle-excluded"></span><div class="item_title">Cosmetic Dentistry</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/cosmetic-dentistry">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/cosmetic-dentistry</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid132','132',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid132','132',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'133','itemid133')" class="toggle-excluded"></span><div class="item_title">Implant Dentistry</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/implant-dentistry">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/implant-dentistry</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid133','133',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid133','133',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'159','itemid159')" class="toggle-excluded"></span><div class="item_title">What is implant dentistry?</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/implant-dentistry/what-is-implant-dentistry">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/implant-dentistry/what-is-implant-dentistry</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid159','159',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid159','159',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'160','itemid160')" class="toggle-excluded"></span><div class="item_title">Benefits of implants</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/implant-dentistry/benefits-of-implants">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/implant-dentistry/benefits-of-implants</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid160','160',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid160','160',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'161','itemid161')" class="toggle-excluded"></span><div class="item_title">Who are implants suitable for?</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/implant-dentistry/who-are-implants-suitable-for">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/implant-dentistry/who-are-implants-suitable-for</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid161','161',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid161','161',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'162','itemid162')" class="toggle-excluded"></span><div class="item_title">Implant maintenance plan</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/implant-dentistry/implant-maintenance-plan">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/implant-dentistry/implant-maintenance-plan</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid162','162',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid162','162',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'163','itemid163')" class="toggle-excluded"></span><div class="item_title">Frequently Asked Questions</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/implant-dentistry/frequently-asked-questions">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/implant-dentistry/frequently-asked-questions</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid163','163',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid163','163',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'134','itemid134')" class="toggle-excluded"></span><div class="item_title">Orthodontics</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid134','134',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid134','134',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'165','itemid165')" class="toggle-excluded"></span><div class="item_title">Metal Braces</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/metal-braces">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/metal-braces</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid165','165',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid165','165',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'166','itemid166')" class="toggle-excluded"></span><div class="item_title">Low friction braces</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/low-friction-braces">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/low-friction-braces</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid166','166',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid166','166',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'167','itemid167')" class="toggle-excluded"></span><div class="item_title">Lingual braces</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/lingual-braces">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/lingual-braces</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid167','167',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid167','167',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'168','itemid168')" class="toggle-excluded"></span><div class="item_title">Clear braces</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/clear-braces">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/clear-braces</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid168','168',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid168','168',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'169','itemid169')" class="toggle-excluded"></span><div class="item_title">Invisalign</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/invisalign">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/invisalign</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid169','169',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid169','169',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'170','itemid170')" class="toggle-excluded"></span><div class="item_title">Invisalign Teen</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/invisalign-teen">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/invisalign-teen</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid170','170',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid170','170',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'171','itemid171')" class="toggle-excluded"></span><div class="item_title">Payment options</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/payment-options">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/payment-options</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid171','171',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid171','171',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'172','itemid172')" class="toggle-excluded"></span><div class="item_title">Free initial consultation</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/free-initial-consultation">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/orthodontics/free-initial-consultation</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid172','172',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid172','172',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'135','itemid135')" class="toggle-excluded"></span><div class="item_title">Under 18's Club</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/under-18-s-club">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/under-18-s-club</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid135','135',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid135','135',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'164','itemid164')" class="toggle-excluded"></span><div class="item_title">Denplan for Children</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/under-18-s-club/denplan-for-children">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/under-18-s-club/denplan-for-children</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid164','164',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid164','164',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'173','itemid173')" class="toggle-excluded"></span><div class="item_title">Smilecare Children's Plan</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/under-18-s-club/smilecare-children-s-plan">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/under-18-s-club/smilecare-children-s-plan</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid173','173',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid173','173',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'136','itemid136')" class="toggle-excluded"></span><div class="item_title">Maintaining Your Smile</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/maintaining-your-smile">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/maintaining-your-smile</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid136','136',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid136','136',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'174','itemid174')" class="toggle-excluded"></span><div class="item_title">How we can help</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/maintaining-your-smile/how-we-can-help">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/maintaining-your-smile/how-we-can-help</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid174','174',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid174','174',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'175','itemid175')" class="toggle-excluded"></span><div class="item_title">Preventative advice</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/maintaining-your-smile/preventative-advice">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/maintaining-your-smile/preventative-advice</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid175','175',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid175','175',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'176','itemid176')" class="toggle-excluded"></span><div class="item_title">How do you brush?</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/maintaining-your-smile/how-do-you-brush">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/maintaining-your-smile/how-do-you-brush</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid176','176',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid176','176',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'177','itemid177')" class="toggle-excluded"></span><div class="item_title">How do you floss?</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/maintaining-your-smile/how-do-you-floss">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/maintaining-your-smile/how-do-you-floss</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid177','177',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid177','177',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'137','itemid137')" class="toggle-excluded"></span><div class="item_title">Smilecare Shop</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/smilecare-shop">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/smilecare-shop</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid137','137',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid137','137',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'138','itemid138')" class="toggle-excluded"></span><div class="item_title">FAQs</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/faqs">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/faqs</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid138','138',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid138','138',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'139','itemid139')" class="toggle-excluded"></span><div class="item_title">Links</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/links">http://localhost/smilecaredentalcentre.co.uk/index.php/treatments/links</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid139','139',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid139','139',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'105','itemid105')" class="toggle-excluded"></span><div class="item_title">Smile Gallery</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/smile-gallery">http://localhost/smilecaredentalcentre.co.uk/index.php/smile-gallery</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid105','105',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid105','105',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'178','itemid178')" class="toggle-excluded"></span><div class="item_title">Implant cases</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/smile-gallery/implant-cases">http://localhost/smilecaredentalcentre.co.uk/index.php/smile-gallery/implant-cases</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid178','178',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid178','178',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'179','itemid179')" class="toggle-excluded"></span><div class="item_title">Orthodontics cases</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/smile-gallery/orthodontics-cases">http://localhost/smilecaredentalcentre.co.uk/index.php/smile-gallery/orthodontics-cases</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid179','179',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid179','179',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'180','itemid180')" class="toggle-excluded"></span><div class="item_title">Reconstruction cases</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/smile-gallery/reconstruction-cases">http://localhost/smilecaredentalcentre.co.uk/index.php/smile-gallery/reconstruction-cases</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid180','180',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid180','180',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'181','itemid181')" class="toggle-excluded"></span><div class="item_title">Smile makeovers</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/smile-gallery/smile-makeovers">http://localhost/smilecaredentalcentre.co.uk/index.php/smile-gallery/smile-makeovers</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid181','181',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid181','181',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'106','itemid106')" class="toggle-excluded"></span><div class="item_title">Testimonials</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/testimonials/what-our-patients-write">http://localhost/smilecaredentalcentre.co.uk/index.php/testimonials/what-our-patients-write</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid106','106',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid106','106',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'183','itemid183')" class="toggle-excluded"></span><div class="item_title">What our patients say</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/testimonials/what-our-patients-say">http://localhost/smilecaredentalcentre.co.uk/index.php/testimonials/what-our-patients-say</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid183','183',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid183','183',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'107','itemid107')" class="toggle-excluded"></span><div class="item_title">Facecare</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/facecare">http://localhost/smilecaredentalcentre.co.uk/index.php/facecare</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid107','107',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid107','107',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'184','itemid184')" class="toggle-excluded"></span><div class="item_title">Botox Treatments</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/botox-treatments">http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/botox-treatments</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid184','184',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid184','184',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'188','itemid188')" class="toggle-excluded"></span><div class="item_title">Botox for men and women</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/botox-treatments/botox-for-men-and-women">http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/botox-treatments/botox-for-men-and-women</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid188','188',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid188','188',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'189','itemid189')" class="toggle-excluded"></span><div class="item_title">What areas can be treated?</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/botox-treatments/what-areas-can-be-treated">http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/botox-treatments/what-areas-can-be-treated</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid189','189',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid189','189',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'185','itemid185')" class="toggle-excluded"></span><div class="item_title">Dermal Fillers</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/dermal-fillers">http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/dermal-fillers</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid185','185',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid185','185',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'190','itemid190')" class="toggle-excluded"></span><div class="item_title">About Dermal Fillers</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/dermal-fillers/about-dermal-fillers">http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/dermal-fillers/about-dermal-fillers</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid190','190',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid190','190',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'191','itemid191')" class="toggle-excluded"></span><div class="item_title">What areas can be treated?</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/dermal-fillers/what-areas-can-be-treated">http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/dermal-fillers/what-areas-can-be-treated</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid191','191',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid191','191',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'186','itemid186')" class="toggle-excluded"></span><div class="item_title">Treatments You Can Trust</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/treatments-you-can-trust">http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/treatments-you-can-trust</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid186','186',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid186','186',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'187','itemid187')" class="toggle-excluded"></span><div class="item_title">Facecare FAQs</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/facecare-faqs">http://localhost/smilecaredentalcentre.co.uk/index.php/facecare/facecare-faqs</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid187','187',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid187','187',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'108','itemid108')" class="toggle-excluded"></span><div class="item_title">Special Offers</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/special-offers">http://localhost/smilecaredentalcentre.co.uk/index.php/special-offers</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid108','108',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid108','108',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'109','itemid109')" class="toggle-excluded"></span><div class="item_title">Contact</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/contact">http://localhost/smilecaredentalcentre.co.uk/index.php/contact</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid109','109',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid109','109',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'192','itemid192')" class="toggle-excluded"></span><div class="item_title">Opening Times</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/contact/opening-times">http://localhost/smilecaredentalcentre.co.uk/index.php/contact/opening-times</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid192','192',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid192','192',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'193','itemid193')" class="toggle-excluded"></span><div class="item_title">Make an Appointment</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/contact/make-an-appointment">http://localhost/smilecaredentalcentre.co.uk/index.php/contact/make-an-appointment</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid193','193',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid193','193',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'194','itemid194')" class="toggle-excluded"></span><div class="item_title">Ask the Dentist</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/contact/ask-the-dentist">http://localhost/smilecaredentalcentre.co.uk/index.php/contact/ask-the-dentist</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid194','194',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid194','194',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'195','itemid195')" class="toggle-excluded"></span><div class="item_title">Complaints</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/contact/complaints">http://localhost/smilecaredentalcentre.co.uk/index.php/contact/complaints</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid195','195',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid195','195',event);" class="editable">0.5</td></tr><tr class=""><td><span onclick="toggleExcluded(this,'196','itemid196')" class="toggle-excluded"></span><div class="item_title">Downloads</div><a ref="nofollow" target="_blank" href="http://localhost/smilecaredentalcentre.co.uk/index.php/contact/downloads">http://localhost/smilecaredentalcentre.co.uk/index.php/contact/downloads</a></td><td></td><td onclick="showOptions(this,'changefreq','itemid196','196',event);" class="editable">weekly</td><td onclick="showOptions(this,'priority','itemid196','196',event);" class="editable">0.5</td></tr></tbody></table><div style="display:none;" class="divoptions" id="divchangefreq"><div align="right"><a href="javascript:closeOptions();">x</a></div><table><tbody><tr><td><a onclick="return changeProperty(this,'changefreq');" href="#">always</a></td></tr><tr><td><a onclick="return changeProperty(this,'changefreq');" href="#">hourly</a></td></tr><tr><td><a onclick="return changeProperty(this,'changefreq');" href="#">daily</a></td></tr><tr><td><a onclick="return changeProperty(this,'changefreq');" href="#">weekly</a></td></tr><tr><td><a onclick="return changeProperty(this,'changefreq');" href="#">monthly</a></td></tr><tr><td><a onclick="return changeProperty(this,'changefreq');" href="#">yearly</a></td></tr><tr><td><a onclick="return changeProperty(this,'changefreq');" href="#">never</a></td></tr></tbody></table></div><div style="display:none;" class="divoptions" id="divpriority"><div align="right"><a onclick="return closeOptions();" href="#">x</a></div><table><tbody><tr><td><a onclick="return changeProperty(this,'priority');" href="#">0</a></td></tr><tr><td><a onclick="return changeProperty(this,'priority');" href="#">0.1</a></td></tr><tr><td><a onclick="return changeProperty(this,'priority');" href="#">0.2</a></td></tr><tr><td><a onclick="return changeProperty(this,'priority');" href="#">0.3</a></td></tr><tr><td><a onclick="return changeProperty(this,'priority');" href="#">0.4</a></td></tr><tr><td><a onclick="return changeProperty(this,'priority');" href="#">0.5</a></td></tr><tr><td><a onclick="return changeProperty(this,'priority');" href="#">0.6</a></td></tr><tr><td><a onclick="return changeProperty(this,'priority');" href="#">0.7</a></td></tr><tr><td><a onclick="return changeProperty(this,'priority');" href="#">0.8</a></td></tr><tr><td><a onclick="return changeProperty(this,'priority');" href="#">0.9</a></td></tr><tr><td><a onclick="return changeProperty(this,'priority');" href="#">1</a></td></tr></tbody></table></div></body></html>