				function moveNewLyrics() { 
					var d = document.getElementById('newLyrics');
					d.style.display='none';
					var as = d.getElementsByTagName('a');
					var o = "<select name='newLyricsOptions' style='margin:2px 0; width:140px;' ";
					o += "onChange='location.href = this[this.selectedIndex].value'  id='select'>";
					o += "<option style='font-size:10px;' selected>--Latest Lyrics--</option>";
					for(var i=0;i<as.length;i++) {
						var a = as[i];
						url = a.href;
						txt = strip_tags(a.innerHTML,'<p>');
						if(txt.length>28) { txt = txt.substring(0,25)+"..."; }

						o += "<option style='font-size:10px;' value='"+url+"'>"+txt+"</option>";
					}
					o += "</select>";
					var t = document.getElementById('newLyricsTarget');
					t.innerHTML = o;
			 	}
				function moveAltLyrics() { 
					var d = document.getElementById('altSongs');
					d.style.display='none';
					var as = d.getElementsByTagName('a');
					var o = "<select name='altLyricsOptions' style='margin:2px 0; width:140px;' ";
					o += "onChange='location.href = this[this.selectedIndex].value' id='select2'>";
					o += "<option style='font-size:10px;' selected>--Artist's Lyrics--</option>";
					for(var i=0;i<as.length;i++) {
						var a = as[i];
						url = a.href;
						txt = a.innerHTML;
						if(txt.length>28) { txt = txt.substring(0,25)+"..."; }

						o += "<option style='font-size:10px;' value='"+url+"'>"+txt+" Lyrics</option>";
					}
					o += "</select>";
					var t = document.getElementById('altLyricsTarget');
					t.innerHTML = o;
			 	}
				function moveTopLyrics() { 
					var d = document.getElementById('last7DaysTop');
					d.style.display='none';
					var as = d.getElementsByTagName('a');
					var o = "<select name='topLyricsOptions'  style='margin:2px 0; width:140px;' ";
					o += "onChange='location.href = this[this.selectedIndex].value' id='select3'>";
					o += "<option style='font-size:10px;' selected>--Top Lyrics--</option>";
					for(var i=0;i<as.length;i++) {
						var a = as[i];
						url = a.href;
						txt = a.innerHTML;
						if(txt.length>28) { txt = txt.substring(0,25)+"..."; }

						o += "<option style='font-size:10px;' value='"+url+"'>"+txt+" Lyrics</option>";
					}
					o += "</select>";
					var t = document.getElementById('topLyricsTarget');
					t.innerHTML = o;
			 	}  
				function strip_tags(str, allowed_tags) {
					var key = '', tag = '', allowed = false;
					var matches = allowed_array = [];
					var allowed_keys = {};
					var replacer = function(search, replace, str) {
        					var tmp_arr = [];
        					tmp_arr = str.split(search);
        					return tmp_arr.join(replace);
					};
    					if (allowed_tags) {
        					allowed_tags  = allowed_tags.replace(/[^a-zA-Z,]+/g, '');;
        					allowed_array = allowed_tags.split(',');
					}
					matches = str.match(/(<\/?[^>]+>)/gi);
    					for (key in matches) {
					        if (isNaN(key)) {
					            // IE7 Hack
					            continue;
					        }
					html = matches[key].toString();
        				allowed = false;
        				for (k in allowed_array) {
						allowed_tag = allowed_array[k];
						i = -1;
            					if (i != 0) { i = html.toLowerCase().indexOf('<'+allowed_tag+'>');}
            					if (i != 0) { i = html.toLowerCase().indexOf('<'+allowed_tag+' ');}
            					if (i != 0) { i = html.toLowerCase().indexOf('</'+allowed_tag)   ;}        
 	   					if (i == 0) {
                					allowed = true;
                					break;
            					}
        				}
        					if (!allowed) {
            							str = replacer(html, "", str); // Custom replace. No regexing
        					}
    					}
    					return str;
				}