        function pl(l, s){if(s.length>l){s=s.substr(0,l-3)+"...";}return s;}
        function put_top(d, s){
            document.write('<div class="thumb-title"><h3>'+pl(15,d)+'</h3><div class="rating">');
            for(var i = 0; i < 5; ++i){ document.write('<img src="images2/star-' + ((i < s)? 'full': 'empty') + '.gif" alt="" />'); }
            document.write('<img src="images2/hd-ico.gif" alt="" /></div></div>');
        }
        function put_bot(d, t){document.write('<div class="bottom"><p><em>by:</em>'+pl(26, d)+'</p><span><strong>'+
        Math.floor(Math.random()*3+2)+':'+Math.floor(Math.random()*49 + 10)
        +'</strong> <a href="#"><img src="images2/plus.gif" alt="" /></a></span></div>');}
        function add_class(idname, newclass){var el = document.getElementById(idname); if(el != undefined && el != null){ if(!el.className){el.className = newclass; }else{el.className = el.className + " " + newclass;}}}
        function select_menu(name){ add_class(name+"_menu", "selected");}

