(function() {
    // fix ie blinking
    var m = document.uniqueID && document.compatMode && !window.XMLHttpRequest && document.execCommand;
    try { if (!!m) { m('BackgroundImageCache', false, true); } }
    catch (oh) { };
    // css helper
    var u = navigator.userAgent.toLowerCase();
    var is = function(t) { return (u.indexOf(t) != -1) };
    jQuery('html').addClass([(!(/opera|webtv/i.test(u)) && /msie (\d)/.test(u)) ? ('ie ie' + RegExp.$1)
    : is('firefox/2') ? 'gecko firefox2'
    : is('firefox/3') ? 'gecko firefox3'
    : is('gecko/') ? 'gecko'
    : is('chrome/') ? 'chrome'
    : is('opera/9') ? 'opera opera9' : /opera (\d)/.test(u) ? 'opera opera' + RegExp.$1
    : is('konqueror') ? 'konqueror'
    : is('applewebkit/') ? 'webkit safari'
    : is('mozilla/') ? 'gecko' : '',
    (is('x11') || is('linux')) ? ' linux'
    : is('mac') ? ' mac'
    : is('win') ? ' win' : ''
    ].join(' '));
})();

var _artStyleUrlCached = null;
function artGetStyleUrl() {
    if (null == _artStyleUrlCached) {
        var ns;
        _artStyleUrlCached = '';
        ns = jQuery('link');
        for (var i = 0; i < ns.length; i++) {
            var l = ns[i].href;
            if (l && /template\.ie6\.css(\?.*)?$/.test(l))
                return _artStyleUrlCached = l.replace(/template\.ie6\.css(\?.*)?$/, '');
        }
        ns = jQuery('style');
        for (var i = 0; i < ns.length; i++) {
            var matches = new RegExp('import\\s+"([^"]+\\/)template\\.ie6\\.css"').exec(ns[i].html());
            if (null != matches && matches.length > 0)
                return _artStyleUrlCached = matches[1];
        }
    }
    return _artStyleUrlCached;
}

function artFixPNG(element) {
    if (jQuery.browser.msie && parseInt(jQuery.browser.version) < 7) {
		var src;
		if (element.tagName == 'IMG') {
			if (/\.png$/.test(element.src)) {
				src = element.src;
				element.src = artGetStyleUrl() + '../images/spacer.gif';
			}
		}
		else {
			src = element.currentStyle.backgroundImage.match(/url\("(.+\.png)"\)/i);
			if (src) {
				src = src[1];
				element.runtimeStyle.backgroundImage = 'none';
			}
		}
		if (src) element.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "')";
	}
}

jQuery(function() {
    jQuery.each(jQuery('ul.t8-hmenu>li:not(.t8-hmenu-li-separator),ul.t8-vmenu>li:not(.t8-vmenu-separator)'), function (i, val) {
        var l = jQuery(val); var s = l.children('span'); if (s.length == 0) return;
        var t = l.find('span.t').last(); l.children('a').append(t.html(t.text()));
        s.remove();
    });
});/* end Page */

/* begin Menu */
jQuery(function() {
    jQuery.each(jQuery('ul.t8-hmenu>li:not(:last-child)'), function(i, val) {
        jQuery('<li class="t8-hmenu-li-separator"><span class="t8-hmenu-separator"> </span></li>').insertAfter(val);
    });
    if (!jQuery.browser.msie || parseInt(jQuery.browser.version) > 6) return;
    jQuery.each(jQuery('ul.t8-hmenu li'), function(i, val) {
        val.j = jQuery(val);
        val.UL = val.j.children('ul:first');
        if (val.UL.length == 0) return;
        val.A = val.j.children('a:first');
        this.onmouseenter = function() {
            this.j.addClass('t8-hmenuhover');
            this.UL.addClass('t8-hmenuhoverUL');
            this.A.addClass('t8-hmenuhoverA');
        };
        this.onmouseleave = function() {
            this.j.removeClass('t8-hmenuhover');
            this.UL.removeClass('t8-hmenuhoverUL');
            this.A.removeClass('t8-hmenuhoverA');
        };

    });
});

function artFluidSheetComputedWidth(percent, minval, maxval) {
    percent = parseInt(percent);
    var val = document.body.clientWidth / 100 * percent;
    return val < minval ? minval + 'px' : val > maxval ? maxval + 'px' : percent + '%';
}

jQuery(function () {
    if (jQuery.browser.msie && parseInt(jQuery.browser.version) < 8) {
        var c = jQuery('div.t8-content');
        if (c.length !== 1) return;
        var s = c.parent().children('.t8-layout-cell:not(.t8-content)');
        jQuery(window).bind('resize', function () {
            var w = 0;
            c.hide();
            s.each(function () { w += this.clientWidth; });
            c.w = c.parent().width(); c.css('width', c.w - w + 'px');
            c.show();
        })

        var r = jQuery('div.t8-content-layout-row').each(function () {
            this.c = jQuery(this).children('.t8-layout-cell');
        });

        jQuery(window).bind('resize', function () {
            r.each(function () {
                if (this.h == this.clientHeight) return;
                this.c.css('height', 'auto');
                this.h = this.clientHeight;
                this.c.css('height', this.h + 'px');
            });
        });
    }

    var g = jQuery('.t8-layout-glare-image');
    jQuery(window).bind('resize', function () {
        g.each(function () {
            var i = jQuery(this);
            i.css('height', i.parents('.t8-layout-cell').height() + 'px');
        });
    });

    jQuery(window).trigger('resize');
});

function artButtonSetup(className) {
    jQuery.each(jQuery("a." + className + ", button." + className + ", input." + className), function (i, val) {
        var b = jQuery(val);
        if (!b.parent().hasClass('t8-button-wrapper')) {
            if (b.is('input')) b.val(b.val().replace(/^\s*/, ''));
            if (!b.hasClass('t8-button')) b.addClass('t8-button');
            jQuery("<span class='t8-button-wrapper'><span class='t8-button-l'> </span><span class='t8-button-r'> </span></span>").insertBefore(b).append(b);
            if (b.hasClass('active')) b.parent().addClass('active');
        }
        b.mouseover(function () { jQuery(this).parent().addClass("hover"); });
        b.mouseout(function () { var b = jQuery(this); b.parent().removeClass("hover"); if (!b.hasClass('active')) b.parent().removeClass('active'); });
        b.mousedown(function () { var b = jQuery(this); b.parent().removeClass("hover"); if (!b.hasClass('active')) b.parent().addClass('active'); });
        b.mouseup(function () { var b = jQuery(this); if (!b.hasClass('active')) b.parent().removeClass('active'); });
    });
}
jQuery(function() { artButtonSetup("t8-button"); });

jQuery(function() {
  artButtonSetup("button");
  artButtonSetup("readon");
  artButtonSetup("readmore");
});

function header_bar()
{
    document.write("<div align=\"center\">");
    document.write("	<div align=\"center\">");
    document.write("		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"900\" id=\"table5\">");
    document.write("			<tr>");
    document.write("				<td>");
    document.write("				<img border=\"0\" src=\"images/logo.gif\" width=\"157\" height=\"60\" /></td>");
    document.write("			</tr>");
    document.write("		</table>");
    document.write("	</div>");
    document.write("	<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"900\" id=\"table1\" background=\"images/001.gif\">");
    document.write("		<tr>");
    document.write("			<td width=\"22\">");
    document.write("			<img border=\"0\" src=\"images/003.gif\" width=\"22\" height=\"32\" /></td>");
    document.write("			<td width=\"276\"><b>");
    document.write("			<font color=\"#FFFFFF\" face=\"Verdana\" style=\"font-size: 9pt\">");
    document.write("			<a href=\"index.php\"><font color=\"#FFFFFF\">HOME</font></a></font></b></td>");
    document.write("<td>");
    document.write("			<ul id=\"nav\">");
    document.write("				<li><a href=\"/templates/rhuk_milkyway/News.php\">NEWS</a> </li>");
    document.write("				<li><a href=\"/templates/rhuk_milkyway/pa_desc.php\">PRODUCTS</a> </li>");
    document.write("				<li><a href=\"/templates/rhuk_milkyway/Sales.php\">SALES</a> </li>");
    document.write("				<li><a href=\"/templates/rhuk_milkyway/Reviews.php\">REVIEWS</a> </li>");
    document.write("				<li><a href=\"/templates/rhuk_milkyway/Support.php\">SUPPORT</a> </li>");
    document.write("				<li>");
    document.write("				<a href=\"http://forum.trendsaudio.com/Trendsforum/ForumListT.jsp?Language=English\">");
    document.write("				FORUM</a> </li>");
    document.write("				<li><a href=\"/templates/rhuk_milkyway/About.php\">ABOUT US</a> </li>");
    document.write("			</ul>");
    document.write("			</td>");
    document.write("			<td>");
    document.write("			<p align=\"right\">");
    document.write("			<img border=\"0\" src=\"images/004.gif\" width=\"29\" height=\"32\" /></p>");
    document.write("			</td>");
    document.write("		</tr>");
    document.write("	</table>");
    document.write("</div>");
    document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100\" id=\"table6\">");
    document.write("		<tr>");
    document.write("			<td><img border=\"0\" src=\"images/kong.gif\" width=\"5\" height=\"3\"></td>");
    document.write("		</tr>");
    document.write("	</table>");
}


function footer_bar()
{
    document.write("<div align=\"center\">");
    document.write("	<div align=\"center\">");	
    document.write("<div id=\"footer\" style=\"width: 900px; height: 20px\">");
    document.write("<p>Copyright(C) 2010 - 2011 <a href=\"http://www.innit.com\">");
    document.write("www.innit.com</a>, All Rights Reserved </p>");
    document.write("</div></div></div>");
}




function right_bar()
{
    document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100\" id=\"table20\">");
    document.write("	<tr>");
    document.write("		<td bgcolor=\"#FFFFFF\">");
    document.write("		<img border=\"0\" src=\"images/kong.gif\" width=\"5\" height=\"5\"></td>");
    document.write("	</tr>");
    document.write("</table>");
    document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"215\" id=\"table18\">");
    document.write("	<tr>");
    document.write("		<td background=\"images/018.gif\" height=\"32\" style=\"font-size: 11px\">");
    document.write("		<p align=\"center\"><span style=\"font-weight: 700\">");
    document.write("		<font face=\"Verdana\" size=\"3\" color=\"#FFFFFF\">Awards</font></span></p>");
    document.write("		</td>");
    document.write("	</tr>");
    document.write("	<tr>");
    document.write("		<td background=\"images/019.gif\" style=\"font-size: 11px\">");
    document.write("		<div align=\"center\">");
    document.write("			<table id=\"table21\" style=\"BORDER-COLLAPSE: collapse\" cellpadding=\"0\" width=\"215\" border=\"0\" cellspacing=\"4\">");
    document.write("				<tr>");
    document.write("					<td align=\"center\" colspan=\"2\"><font color=\"#800080\"><b>Trends ");
    document.write("					TA-10 Class-T Stereo Amplifier </b></font></td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.goodsound.com/equipment/trends_ta10_1.htm\">");
    document.write("					<img src=\"images/GoodSoung.gif\" width=\"64\" height=\"67\" border=\"0\"></a></td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.stereomojo.com/SHOOTOUT2007INTEGRATEDS.htm\">");
    document.write("					<img height=\"67\" src=\"images/MAXIMUMMOJOAWARD.jpg\" width=\"67\" border=\"0\"></a></td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">\"Great Buy\", at ");
    document.write("					GoodSound.com</td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">MAXIMUM MOJO AWARD, ");
    document.write("					at Stereomojo.com</td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.6moons.com/audioreviews/bo06/david.html\">");
    document.write("					<img src=\"images/6moon06_s.jpg\" border=\"0\"></a></td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.enjoythemusic.com/magazine/equipment/0707/trends_audio_ta101.htm\">");
    document.write("					<img height=\"67\" src=\"images/audiophile_gift_2007_small.jpg\" width=\"67\" border=\"0\"></a></td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">Best of 2006, at ");
    document.write("					6moons.com </td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">Great Audiophile ");
    document.write("					Gifts 2007, at EnjoyTheMusic.com</td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.enjoythemusic.com/magazine/equipment/1206/audiophilegift2006.htm\">");
    document.write("					<img src=\"images/EnjoyMusic_s.jpg\" border=\"0\"></a></td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.6moons.com/audioreviews/trends/ta10.html\">");
    document.write("					<img height=\"62\" src=\"images/6moon07_trendsTA-10.gif\" width=\"82\" border=\"0\"></a></td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">Great Audiophile ");
    document.write("					Gifts 2006, at EnjoyTheMusic.com</td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">Award Winners of ");
    document.write("					2007 by 6moons.com</td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.6moons.com/audioreviews/trends/ta10_3.html\">");
    document.write("					<img src=\"images/bluemoonaward.gif\" width=\"68\" height=\"67\" border=\"0\"></a></td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.hometheater.co.il/modules.php?name=News&file=article&sid=1131&mod\">");
    document.write("					<img height=\"67\" src=\"images/editor-choice-2007.jpg\" width=\"33\" border=\"0\"></a></td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">Blue Moon Award, ");
    document.write("					at 6moons.com</td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">Martin H. Sabag ");
    document.write("					, hometheater.co.il.</td>");
    document.write("				</tr>");
    
    
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.fairaudio.de/test/vollverstaerker/2009/test-voll-verstaerker-trends-audio-ta-10.1-1.html\">");
    document.write("					<img src=\"images/favorite2009.gif\" width=\"68\" height=\"67\" border=\"0\"></a></td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">");
   
    document.write("					<a href=\"http://thresholdlovers.free.fr/articles.php?lng=en&pg=595\">");
    document.write("					<img height=\"67\" src=\"images/Award_thresholdlovers.jpg\" width=\"68\" border=\"0\"></a></td>");
    
    document.write("				</tr>");       
     
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">fairaudio's favourite Award 2009  ");
    document.write("					at fairaudio.de </td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">&nbsp;\"5 stars State of the Art\", ");
    document.write("					Award at thresholdlovers.com</td>");
    document.write("				</tr>");    
    
 
 
 
 
  
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.trendsaudio.com/images/whatHiFiTA10_UK.bmp\">");
    document.write("					<img src=\"images/WhatHi-Fi.jpg\" width=\"68\" height=\"55\" border=\"0\"></a></td>");
   
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.trendsaudio.com/EN/News/ToneAward09.pdf\">");
    document.write("					<img src=\"images/TA10.2ToneExValue Award09.jpg\" width=\"68\" height=\"85\" border=\"0\"></a></td>");
    document.write("				</tr>");       
     
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">WhatHi-Fi  ");
    document.write("					 </td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">Exceptional Value Award 2009<BR> Tone Audio Magazine ");
document.write("				</tr>"); 
 
 
 
 
 
 
 
  document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.thresholdlovers.com/articles.php?lng=en&pg=721\">");
    document.write("					<img height=\"67\" src=\"images/Award_thresholdlovers.jpg\" width=\"68\" border=\"0\"></a></td>");
    
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.magazine-audio.com/2010/trends-ta-10-2/\">");
    document.write("					<img src=\"images/84_MAudioAward_S.jpg\" width=\"70\" height=\"65\" border=\"0\"></a></td>");
    
    document.write("				</tr>");
       
     
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">&nbsp;\"5 stars State of the Art\", ");
    document.write("					Award at thresholdlovers.com</td>");
    
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">&nbsp;\"Best buy 2010\", ");
    document.write("					At Magazine Audio</td>");				
 

    document.write("				</tr>");    
 
     document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.6moons.com/audioreviews/trends5/trends.html\">");
    document.write("					<img src=\"images/90_RealsizationAward.jpg\" width=\"70\" height=\"68\" border=\"0\"></a></td>");
    
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">");
  document.write("					<a href=\"http://www.dooyoo.co.uk/amplifier/trends-audio-ta10-1-class-t/1255979/#rev\">");
    document.write("					<img src=\"images/Crown_award.gif\" width=\"70\" height=\"68\" border=\"0\"></a></td>");
    document.write("				</tr>");
    
    
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">&nbsp;\"Realsization 2010\", ");
    document.write("					Award at 6moon.com</td>");
    
   document.write("					<td width=\"105\" align=\"center\" valign=\"top\">&nbsp;\Crowned Review at\ ");
    document.write("					dooyoo.co.uk</td>");
    
   
    document.write("					 </td>"); 
    document.write("				</tr>");
    







    
    document.write("				<tr>");
    document.write("					<td align=\"center\" colspan=\"2\" valign=\"top\">");
    document.write("					<hr align=\"right\" size=\"1\"><font color=\"#800080\"><b>Trends TA-10.2P");
    document.write("					Power Amplifier </b></font></td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.thresholdlovers.com/articles.php?lng=en&pg=694\">");
    document.write("					<img src=\"images/Thlovers_June09.jpg\" width=\"70\" height=\"65\" border=\"0\"></a></td>");
    
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">");
   
    document.write("				</tr>");
    
    
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">&nbsp;\"4 stars State of the Art\", ");
    document.write("					Award at thresholdlovers.com</td>");
    
   
    
   
    
    document.write("				</tr>");
    
    
    
    
    
    
    
    
    
    
    
    
    document.write("				<tr>");
    document.write("					<td align=\"center\" colspan=\"2\" valign=\"top\">");
    document.write("					<hr align=\"right\" size=\"1\"><font color=\"#800080\"><b>Trends UD-10 ");
    document.write("					USB Audio Converter </b></font></td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.goodsound.com/equipment/trends_ud10_1.htm\">");
    document.write("					<img src=\"images/GoodSoung.gif\" width=\"67\" height=\"67\" border=\"0\"></a></td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.enjoythemusic.com/magazine/viewpoint/0607/nearfield16.htm\">");
    document.write("					<img height=\"67\" src=\"images/bestof2008.jpg\" width=\"69\" border=\"0\"></a></td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">&nbsp;\"Great Buy\", ");
    document.write("					at GoodSound.com</td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">\"Best Of 2008 Blue ");
    document.write("					Note Awards\" at EnjoytheMusic.com</td>");
    document.write("				</tr>");


    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.trendsaudio.com/images/HiFiWorld_June08.PDF\">");
    document.write("					<img src=\"images/Hi-FiWorld.jpg\" width=\"67\" height=\"38\" border=\"0\"></a></td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"\">");
    document.write("					</a></td>");
    document.write("				</tr>");       
     
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">Hi-Fi world  ");
    document.write("					 </td>");
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\"> ");
    document.write("					 </td>");
    document.write("				</tr>");    










    document.write("				<tr>");
    document.write("					<td align=\"center\" colspan=\"2\" valign=\"top\">");
    document.write("					<hr align=\"right\" size=\"1\"><font color=\"#800080\"><b>Trends PA-10 ");
    document.write("					Tube Headphone/Pre-amp  </b></font></td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.trustedreviews.com/mp3/review/2009/06/08/Trends-PA-10-Tube-Headphone-Amplifier/p4\">");
    document.write("					<img src=\"images/awardrecommended.gif\" width=\"67\" height=\"67\" border=\"0\"></a></td>");

    
    
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.thresholdlovers.com/articles.php?lng=en&pg=677\">");
    document.write("					<img height=\"65\" src=\"images/Thlovers_June09.jpg\" width=\"69\" border=\"0\"></a></td>");

    
    document.write("					");
    document.write("					</td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">Awards");
    document.write("					at Trusted reviews.com </td>");

 				
    
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">&nbsp;\"4 stars State of the Art\", ");
    document.write("					Award at thresholdlovers.com</td>");
    document.write("				</tr>");



document.write("				<tr>");
    document.write("					<td align=\"center\" colspan=\"2\" valign=\"top\">");
    document.write("					<hr align=\"right\" size=\"1\"><font color=\"#800080\"><b>Trends PW-10 PSU ");
    document.write("					</b></font></td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.6moons.com/audioreviews/trends5/trends.html\">");
    document.write("					<img src=\"images/90_RealsizationAward.jpg\" width=\"70\" height=\"68\" border=\"0\"></a></td>");
    
    
   
  
    
    document.write("					<td width=\"106\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.thresholdlovers.com/articles.php?lng=en&pg=786\">");
    document.write("					<img src=\"images/36_4starThreshold.jpg\" width=\"70\" height=\"68\" border=\"0\"></a></td>");
    
    
   
   document.write("					");
    document.write("					</td>");
    document.write("				</tr>");
  
    
    document.write("				<tr>");
    document.write("					<td align=\"center\" colspan=\"2\" valign=\"top\">");
    document.write("					<hr align=\"right\" size=\"1\"><font color=\"#800080\"><b>Trends Hi-Fi Systems ");
    document.write("					</b></font></td>");
    document.write("				</tr>");
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.magazine-audio.com/2010/icombo\">");
    document.write("					<img src=\"images/84_MAudioAward.PNG\" width=\"70\" height=\"68\" border=\"0\"></a></td>");
    
    
  
   document.write("					");
    document.write("					</td>");
    
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">");
    document.write("					<a href=\"http://www.enjoythemusic.com/magazine/equipment/1210/audiophile_gift_2010.htm\">")
    document.write("					<img src=\"images/great_audiophile_gift_2010.jpg\" width=\"70\" height=\"68\" border=\"0\"></a></td>");
    
    
  
   document.write("					");
    document.write("					</td>");
    document.write("				</tr>");
  
    
    
    document.write("				<tr>");
    document.write("					<td width=\"105\" align=\"center\" valign=\"top\">&nbsp;\"Best buy 2010\", ");
    document.write("					at Magazine Audio</td>");
     document.write("					<td width=\"105\" align=\"center\" valign=\"top\">&nbsp;\Great Audiophile Gifts\ ");
    document.write("					For 2010 at Enjoythemusic.com</td>");



 		
    document.write("				</tr>");



        
    
    document.write("			</table>");
    document.write("		</div>");
    document.write("		</td>");
    document.write("	</tr>");
    document.write("	<tr>");
    document.write("		<td style=\"font-size: 11px\"><img border=\"0\" src=\"images/020.gif\"></td>");
    document.write("	</tr>");
    document.write("</table>");
}

function product_bar()
{
document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"192\" id=\"table11\">");
document.write("			<tr>");
document.write("					<td width=\"192\" colspan=\"2\" height=\"37\">");
document.write("					<p align=\"left\"><font size=\"4\">&nbsp; </font>");
document.write("					<font size=\"4\" color=\"#800000\">&nbsp;&nbsp; Products</font></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">");
document.write("					<a href=\"index.php?option=com_content&view=article&id=111&Itemid=37\">Men</a></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">");
document.write("					<a href=\"index.php?option=com_content&view=article&id=37&Itemid=28\">Women</a></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">");
document.write("					<a href=\"index.php?option=com_content&view=article&id=103&Itemid=28\">Specials</a></td>");
document.write("				</tr>");

document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");

document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">");
document.write("                                        <a href=\"index.php?option=com_content&view=article&id=216&Itemid=28\">");
document.write("					Big Bang Theory</td>");
document.write("				</tr>");

document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");

document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">");
document.write("                                        <a href=\"index.php?option=com_content&view=article&id=139&Itemid=37\">");
document.write("					Unique products</td>");
document.write("				</tr>");


document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");




document.write("			</table>");
}

function Aboutus_bar()
{
document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"192\" id=\"table48\">");
document.write("		<tr>");
document.write("	<td width=\"192\" colspan=\"2\" height=\"37\">");
document.write("					<p align=\"left\"><font size=\"4\">&nbsp; </font>");
document.write("					<font size=\"4\" color=\"#800000\">&nbsp;&nbsp; About us</font></p>");
document.write("					</td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></p>");
document.write("					</td>");
document.write("					<td width=\"168\"><a href=\"index.php?option=com_content&view=article&id=49&Itemid=57#Our_Mission\">Our Mission</a></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></p>");
document.write("					</td>");
document.write("					<td width=\"168\"><a href=\"index.php?option=com_content&view=article&id=49&Itemid=57#Our_Visions\">Our Vision</a></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></p>");
document.write("					</td>");
document.write("					<td width=\"168\"><a href=\"index.php?option=com_content&view=article&id=49&Itemid=57#Our_Profile\">Our Profile</a></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></p>");
document.write("</td>");
document.write("					<td width=\"168\"><a href=\"index.php?option=com_content&view=article&id=49&Itemid=57#Contact_Us_\">Contact Us</a></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");


document.write("			</table>");
}

function Support_bar()
{
document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"192\" id=\"table46\">");
document.write("				<tr>");
document.write("					<td width=\"192\" colspan=\"2\" height=\"37\">");
document.write("					<p align=\"left\"><font size=\"4\">&nbsp; </font>");
document.write("					<font size=\"4\" color=\"#800000\">&nbsp;&nbsp; Support</font></p>");
document.write("					</td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></p>");
document.write("					</td>");
document.write("					<td width=\"168\">");
document.write("					<a href=\"index.php?option=com_content&view=article&id=27&Itemid=30#Our_Support_Services\">Our Support Services</a></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");
document.write("			</table>");
}

function img_bar()
{
    document.write("<link href=\"tu.css\" rel=\"stylesheet\" type=\"text/css\" />");
    document.write("<script src=\"<?php echo $this->baseurl ?>/templates/rhuk_milkyway/jquery.js\" type=\"text/javascript\"></script>");
    document.write("<div style=\"width: 215px; height: 193px\">");
    document.write("	<div id=\"RHS\">");
    document.write("		<div class=\"creative\">");
    document.write("			<a class=\"lot\" href=\"http://www.computeraudiophile.com/Trends-Audio-UD-10-1-USB-Audio-Converter-Review\">");
    document.write("			<img src=\"images/adv/20090204/001.jpg\" width=\"215\" height=\"190\" /></a>");
    document.write("		</div>");
    document.write("		<div class=\"selectbar nshide\" id=\"creativeSelectbar\">");
    document.write("			<a title=\"Play\" class=\"controlPlay\" href=\"javascript:RHSControl(1);\">");
    document.write("			<img height=\"8\" hspace=\"1\" alt=\"Play\" width=\"4\" src=\"images/ic_g2e.gif\">");
    document.write("			</a><a title=\"Pause\" class=\"controlPause\" href=\"javascript:RHSControl(0);\">");
    document.write("			<img height=\"8\" alt=\"Pause\" width=\"6\" src=\"images/ic_pause.gif\"></a>");
    document.write("			<a title name=\"images/adv/20090204/001.jpg\" class=\"num on\" onclick=\"return false\" href=\"http://www.computeraudiophile.com/Trends-Audio-UD-10-1-USB-Audio-Converter-Review\" onmouseover=\"rotateRHS(0)\">1</a>");
    document.write("			<a title name=\"images/adv/20090204/003.jpg\" class=\"num\" onclick=\"return false\" href=\"http://www.head-fi.org/forums/f70/trends-audio-new-headphone-tube-amp-update-w-photos-393735/index2.html\" onmouseover=\"rotateRHS(1)\">2</a>");
    document.write("			<a title name=\"images/adv/20090204/002.jpg\" class=\"num\" onclick=\"return false\" href=\"http://www.tnt-audio.com/ampli/trends_ta10_e.html\" onmouseover=\"rotateRHS(2)\">3</a>");
    document.write("			<a title name=\"images/adv/20090204/004.jpg\" class=\"num\" onclick=\"return false\" href=\"http://www.goodgearguide.com.au/index.php/taxid;131;pid;6955;pt;1\" onmouseover=\"rotateRHS(3)\">4</a>");
    document.write("			<a title name=\"images/adv/20090204/005.jpg\" class=\"num\" onclick=\"return false\" href=\"http://www.buyoyo.com\" onmouseover=\"rotateRHS(4)\">5</a>");
    document.write("		</div>");
    document.write("	</div>");
    document.write("</div>");
    document.write("</div>");
}

function Sales_bar()
{
document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"192\" id=\"table46\">");
		document.write("		<tr>");
				document.write("	<td width=\"192\" colspan=\"2\" height=\"37\">");
					document.write("<p align=\"left\"><font size=\"4\">&nbsp; </font>");
					document.write("<font size=\"4\" color=\"#800000\">&nbsp;&nbsp; Sales</font></p>");
					document.write("</td>");
				document.write("</tr>");
				document.write("<tr>");
					document.write("<td width=\"24\">");
					document.write("<p align=\"center\">");
					document.write("<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></p>");
					document.write("</td>");
					document.write("<td width=\"168\"><a href=\"index.php?option=com_fabrik&view=table&tableid=28&calculations=0&fabriklayout=bluesky&resetfilters=0&Itemid=28\">Distributors / Resellers</a></td>");
				document.write("</tr>");
				document.write("<tr>");
					document.write("<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
				document.write("</tr>");
				document.write("<tr>");
					document.write("<td width=\"24\">");
					document.write("<p align=\"center\">");
					document.write("<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></p>");
					document.write("</td>");
					document.write("<td width=\"168\"><a href=\"index.php?option=com_content&view=article&id=25&Itemid=28\">Our Sales Contact</a></td>");
				document.write("</tr>");
				document.write("<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
				document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"192\" id=\"table46\">");
		document.write("		<tr>");
				document.write("	<td width=\"192\" colspan=\"2\" height=\"37\">");
					document.write("<p align=\"left\"><font size=\"4\">&nbsp; </font>");
					document.write("<font size=\"4\" color=\"#800000\">&nbsp;&nbsp; Store</font></p>");
					document.write("</td>");
				document.write("</tr>");
				document.write("<tr>");
					document.write("<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
				document.write("</tr>");
				document.write("<tr>");
					document.write("<td width=\"24\">");
					document.write("<p align=\"center\">");
					document.write("<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></p>");
					document.write("</td>");
					document.write("<td width=\"168\"><a href=\"index.php?option=com_content&view=article&id=99&Itemid=56\">Online Shopping Guide</a></td>");
				document.write("</tr>");
				document.write("<tr>");
					document.write("<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
				document.write("</tr>");
				document.write("<tr>");
					document.write("<td width=\"24\">");
					document.write("<p align=\"center\">");
					document.write("<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></p>");
					document.write("</td>");
					document.write("<td width=\"168\"><a href=\"http://www.trendsaudio.com/index.php?option=com_content&view=article&id=165&Itemid=28\">Price</a></td>");
				document.write("</tr>");
				document.write("<tr>");
					document.write("<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
				document.write("</tr>");
								
				document.write("<tr>");
					document.write("<td width=\"24\">");
					document.write("<p align=\"center\">");
					document.write("<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></p>");
					document.write("</td>");
					document.write("<td width=\"168\"><a href=\"http://www.trendsaudio.com/index.php?option=com_content&view=article&id=99&Itemid=28#Shipping\">Shipping Charges</a></td>");
				document.write("</tr>");
				document.write("<tr>");
					document.write("<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
				document.write("</tr>");
				
				
			document.write("</table>");
}

function product_eStore_bar()
{
document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"192\" id=\"table11\">");
document.write("			<tr>");
document.write("					<td width=\"192\" colspan=\"2\" height=\"37\">");
document.write("					<p align=\"left\"><font size=\"4\">&nbsp; </font>");
document.write("					<font size=\"4\" color=\"#800000\">&nbsp;&nbsp; Categories</font></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">");
document.write("					<a href=\"index.php?orderby=product_price&DescOrderBy=ASC&Itemid=37&option=com_virtuemart&page=shop.browse&category_id=8&manufacturer_id=0&keyword=&keyword1=&keyword2=&vmcchk=1\">Audio / Video Cable</a></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">");
document.write("					<a href=\"index.php?orderby=product_price&DescOrderBy=ASC&Itemid=56&option=com_virtuemart&page=shop.browse&category_id=3&manufacturer_id=0&keyword=&keyword1=&keyword2=&vmcchk=1\">Class-T Amp</a></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">");
document.write("					<a href=\"index.php?orderby=product_price&DescOrderBy=ASC&Itemid=56&option=com_virtuemart&page=shop.browse&category_id=6&manufacturer_id=0&keyword=&keyword1=&keyword2=&vmcchk=1\">Class-T Power Amp</a></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">D/A Converter (DAC)</td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");

document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">");
document.write("                                        <a href=\"index.php?orderby=product_price&DescOrderBy=ASC&Itemid=28&option=com_virtuemart&page=shop.browse&category_id=27&manufacturer_id=0&keyword=&keyword1=&keyword2=&vmcchk=1\">");
document.write("					iPhone-Fi</td>");
document.write("				</tr>");

document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");

document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">");
document.write("                                        <a href=\"index.php?orderby=product_price&DescOrderBy=ASC&Itemid=37\&option=com_virtuemart&page=shop.browse&category_id=12&manufacturer_id=0&keyword=&keyword1=&keyword2=&vmcchk=1\">");
document.write("					Power Supply Unit</td>");
document.write("				</tr>");

document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">");
document.write("                                        <a href=\"index.php?orderby=product_price&DescOrderBy=ASC&Itemid=41\&option=com_virtuemart&page=shop.browse&category_id=11&manufacturer_id=0&keyword=&keyword1=&keyword2=&vmcchk=1\">");

document.write("                                         Trends Desktop Hi-Fi Systems</td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">");
document.write("					<a href=\"index.php?orderby=product_price&DescOrderBy=ASC&Itemid=48\&option=com_virtuemart&page=shop.browse&category_id=9&manufacturer_id=0&keyword=&keyword1=&keyword2=&vmcchk=1\">");
document.write("					Trends Hi-Fi Systems</a> </td>");
document.write("				</tr>");

document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\">");

document.write("					<a href=\"index.php?orderby=product_price&DescOrderBy=ASC&Itemid=48&option=com_virtuemart&page=shop.browse&category_id=26&manufacturer_id=0&keyword=&keyword1=&keyword2=&vmcchk=1\">");
document.write("					Trends Upgrade </td>");
document.write("				</tr>");

document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\"><a href=\"index.php?orderby=product_price&DescOrderBy=ASC&Itemid=56&option=com_virtuemart&page=shop.browse&category_id=1&manufacturer_id=0&keyword=&keyword1=&keyword2=&vmcchk=1\">Tube Headphone/Pre amplifier </a> </td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");

document.write("				<tr>");
document.write("					<td width=\"24\">");
document.write("					<p align=\"center\">");
document.write("					<img border=\"0\" src=\"images/007.gif\" width=\"13\" height=\"13\"></td>");
document.write("					<td width=\"168\" valign=\"bottom\"><a href=\"index.php?orderby=product_price&DescOrderBy=ASC&Itemid=17&option=com_virtuemart&page=shop.browse&category_id=2&manufacturer_id=0&keyword=&keyword1=&keyword2=&vmcchk=1\">USB Audio Converter/Phone amp</a></td>");
document.write("				</tr>");
document.write("				<tr>");
document.write("					<td colspan=\"2\"><img border=\"0\" src=\"images/008.gif\"></td>");
document.write("				</tr>");




document.write("			</table>");
}
