Oh_U_Music
oh_U_music
read my profile
sign my guestbook

Name: Oh_U_Music


Message: message me
Website: visit my website


Member Since: 9/26/2005

SubscriptionsSites I Read

Blogrings
MuSiC fOr lIfE.
previous - random - next

.:*MuSiC CoDeS*:.
previous - random - next

~*~_MUSIC_ URLS_and _CODES_ ~*~
previous - random - next

~**||--music codes--||**~
previous - random - next

~!~!~THe BLoGrINg 4 MUsiC CoDE SiTEs~!~!~
previous - random - next

-[ Your Music Code Source]-
previous - random - next

×Music Codes Of Everykind!×
previous - random - next


Posting Calendar

|<< oldest | newest >>|
view all weblog archives

Get Involved!

Suggest a link

Recommend to friend

Create a site


Thursday, September 29, 2005

Basic Style Music Drop Down Toolbar

<style type="text/css">
<object id="darkplayer" codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" type="application/x-oleobject" height="0" standby="Loading Microsoft Windows Media Player components..." width="0" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95">
<param NAME VALUE>
<param NAME="ShowControls" VALUE="0">
<param NAME="ShowStatusBar" VALUE="0">
<param NAME="ShowDisplay" VALUE="0">
<param NAME="DefaultFrame" VALUE="Slide">
<param NAME="Autostart" VALUE="1">
<param NAME="Loop" VALUE="True">
</object>
</p>
<form name="form">
<p style="text-align: center">
<select style="FONT-SIZE: 8pt; BACKGROUND:#ffffff; WIDTH: 200; COLOR: #000000; font-face: verdana; height:174" name="playlist" size="1">
<option value="0">PUT S0NG NAME OR/AND ARTIST HERE</option>
<option value="1">PUT S0NG NAME OR/AND ARTIST HERE</option>
<option value="2">PUT S0NG NAME OR/AND ARTIST HERE</option>
<option value="3">PUT S0NG NAME OR/AND ARTIST HERE</option>
<option value="4">PUT S0NG NAME OR/AND ARTIST HERE</option>
<option value="5">PUT S0NG NAME OR/AND ARTIST HERE</option>
<option value="6">PUT S0NG NAME OR/AND ARTIST HERE</option>
<option value="7">PUT S0NG NAME OR/AND ARTIST HERE</option>
<option value="8">PUT S0NG NAME OR/AND ARTIST HERE</option>
<option value="9">PUT S0NG NAME OR/AND ARTIST HERE</option>
</select><br />
<input TYPE="BUTTON" NAME="darkplay" VALUE="play" onclick="play(document.forms['form'].playlist);">
<input TYPE="BUTTON" NAME="darkpause" VALUE="pause" onclick="document.darkplayer.pause(); playstate=2;">
<input TYPE="BUTTON" NAME="darkstop" VALUE="stop" onclick="document.darkplayer.stop(); playstate=2;"></p>
</form>
<script language="JavaScript">
<!--
var playstate = 1;
shuffle = 1;  // set to 0 to always play first song in list
              // set to 1 to randomly choose the first song to play
 // www.xanga.com/smartypants91780
  // unlimited songs, just copy and paste the song line and change the number
songs=new Array();
songs[0]="LINK HERE"
songs[1]="LINK HERE"
songs[2]="LINK HERE"
songs[3]="LINK HERE"
songs[4]="LINK HERE"
songs[5]="LINK HERE"
songs[6]="LINK HERE"
songs[7]="LINK HERE"
songs[8]="LINK HERE"
songs[9]="LINK HERE"
if (shuffle == 1) {
var randsg = Math.floor(Math.random()*songs.length);
document.darkplayer.FileName = songs[randsg];
document.darkplayer.scr = songs[randsg];
document.forms['form'].playlist.options[randsg].selected = true;
}
function play(list) {
if (playstate == 2) {
document.darkplayer.Play();
} else {
var snum = list.options[list.selectedIndex].value
document.darkplayer.FileName = songs[snum];
document.darkplayer.scr = songs[snum];
}
playstate = 1;
}
//-->
 </script>

Play/Pause/Stop/Forward/Reverse/Shuffle Music Toolbar

<OBJECT ID="Player" height="0" width="0" CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">

<PARAM NAME="uiMode" VALUE="invisible">

<PARAM NAME="Autostart" VALUE="True">

</object>

<FORM ID="form">

<form name="form">

<p style="text-align: center">

<select style="FONT-SIZE: 10pt; BACKGROUND:#000000; WIDTH: 350; COLOR: #ffffff; font-face: verdana; height:174" name="playlist" size="1">

<!-- Add song info that appears in drop down list here -->
<option value="0">Song Title</option>
<option value="1">Song Title</option>
<option value="2">Song Title</option>
<option value="3">Song Title</option>
<option value="4">Song Title</option>

</SELECT>

<BR>

<BUTTON ID="BackButton" onClick="Back(forms['form'].playlist);">&nbsp;<<&nbsp;</BUTTON>

<BUTTON ID="PlayPauseButton" onClick="PlayPause(forms['form'].playlist);"><FONT color="000000">&nbsp;&nbsp;Play&nbsp;&nbsp;</FONT></BUTTON>

<BUTTON ID="NextButton" onClick="Next(forms['form'].playlist);">&nbsp;>>&nbsp;</BUTTON>&nbsp;

<BUTTON ID="StopButton" onclick="Stop();"><FONT color="7a7a7a">Stop</FONT></BUTTON>

<b><font size="3" color="cfcfef">Shuffle</font></b><INPUT TYPE=checkbox CHECKED ID="ShuffleSwitch" onclick="ToggleShuffle(this);" value="ON">

</FORM>

</CENTER>

<comment ID="PlayHTML"><FONT color="cfcfef">&nbsp;&nbsp;Play&nbsp;&nbsp;</FONT></comment>

<comment ID="ShuffleOnHTML"><INPUT TYPE=checkbox CHECKED ID="ShuffleSwitch" onclick="ToggleShuffle(this);"></comment>

<comment ID="ShuffleOffHTML"><INPUT TYPE=checkbox UNCHECKED ID="ShuffleSwitch" onclick="ToggleShuffle(this);"></comment>

<script ID="Main" Language="JavaScript">

var songs = new Array();

//*******************************//

//****** CHANGEABLE STUFF *******//

//*******************************//


var shuffle = true; // false = shuffle off, true = shuffle on

var autoStart = true; // false = autoStart off, true = autoStart on


var numberTracks = false; // true = place track number in front of list items, false = no track numbers


// Add song URLs here (make sure it matches up with the order you have for song info, and urls need quotes):

songs[0]="URL of Song";
songs[1]="URL of Song";
songs[2]="URL of Song";
songs[3]="URL of Song";
songs[4]="URL of Song";


//*******************************//

//*******************************//

// Initializations //

with (document){

var length = forms['form'].playlist.length;

if(numberTracks){

for (var i = 0; i < length; i++){

forms['form'].playlist.options[i].innerHTML = (i+1) + " - " + forms['form'].playlist.options[i].innerHTML;

}

}


if (shuffle) {

var randsg = Math.floor(Math.random()*songs.length);

Player.url = songs[randsg];

forms['form'].playlist.options[randsg].selected = true;

forms['form'].ShuffleSwitch.outerHTML = ShuffleOnHTML.innerHTML;

}

else {

forms['form'].ShuffleSwitch.outerHTML = ShuffleOffHTML.innerHTML;

Player.url = songs[0];

}

if(autoStart){

var snum = forms['form'].playlist.selectedIndex;

if(Player.url != songs[snum]){

Player.url = songs[snum];

}

Player.controls.Play();

}

}

// Functions //

// Discription: "PlayPause" will toggle playing and pausing if the same song is still selected,

// otherwise it will load the newly selected song

function PlayPause(list) {

var snum = list.selectedIndex;


if((Player.url == songs[snum] && Player.url != "") && Player.playState != 1){

if(Player.playState == 3){

Player.controls.Pause();

}


else {

Player.controls.Play();

}

}

else {

Player.url = songs[snum];

Player.controls.Play();

}

}

// Discription: "Next" will move to the next music file if shuffle is off

// otherwise it will load a random song. Calls PlayPause to start music.

function Next(list) {

var snum = list.selectedIndex;

if (!shuffle) {

if (snum == list.length-1) {

snum = -1;

}

snum++;

}


else {

var temp;

do{

temp = Math.floor(Math.random()*songs.length);

} while(temp == snum);

snum = temp;

}


list.options[snum].selected = true;

PlayPause(list);

}

// Discription: "Back" does the same thing as "Next" but moves backwads

// through the list. If shuffle is on then picks a random song.

function Back(list) {

var snum = list.selectedIndex;

if (!shuffle) {

if (snum == 0){

snum = list.length;

}

snum--;

}


else {

var temp;

do{

temp = Math.floor(Math.random()*songs.length);

} while(temp == snum);

snum = temp;

}


list.options[snum].selected = true;

PlayPause(list);

}

// Discription: Self explanitory.

function Stop(){

Player.controls.Stop();

}

// Discription: Makes the shuffle flag the same as the status of the CheckBox

// The status of the checkbox (true/false) indicates if the box is checked

function ToggleShuffle(CheckBox) {

shuffle = CheckBox.status;

}

</SCRIPT>

<script ID="StateChangeHandler" Language = "JavaScript" For = "Player" Event = playStateChange(NewState)>

// Description: This is an interupt handler used to handle instances when the

// state of the player changes to play or stop for example.

//STATE.innerText = NewState;

switch(NewState){

case 8: // Handles player after it just finishes playing through a song

var num = document.forms['form'].playlist.selectedIndex;


if (!shuffle){

if(num == document.forms['form'].playlist.length-1){

num = -1;

}


num++;

}

else {

var temp;

do{

temp = Math.floor(Math.random()*songs.length);

} while(temp == num);

num = temp;

}


document.forms['form'].playlist.options[num].selected = true;


PreviousState = NewState;

break;

case 1: // Handles player after it stops

if(PreviousState == 8){

var num = document.forms['form'].playlist.selectedIndex;

Player.settings.autoStart = true;

Player.url = songs[num];

PreviousState = NewState;

}


else if (PreviousState != 3 && PreviousState != 2){

Player.controls.Play();

Player.settings.autoStart = false;

}


else{

forms['form'].PlayPauseButton.innerHTML = PlayHTML.innerHTML;

}

break;

case 3: // Handles player after it starts to play

PreviousState = NewState;

forms['form'].PlayPauseButton.innerHTML = "Pause";

shuffle = document.forms['form'].ShuffleSwitch.status;

break;

case 2: // Handles player after being paused

PreviousState = NewState;

forms['form'].PlayPauseButton.innerHTML = PlayHTML.innerHTML;

break;

default:

}

</script>

<OBJECT ID="Player" height="0" width="0" CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">

<PARAM NAME="uiMode" VALUE="invisible">

<PARAM NAME="Autostart" VALUE="True">

</object>

<FORM ID="form">

<form name="form">

<p style="text-align: center">

<select style="FONT-SIZE: 10pt; BACKGROUND:#000000; WIDTH: 350; COLOR: #ffffff; font-face: verdana; height:174" name="playlist" size="1">

 

<!-- Add song info that appears in drop down list here -->
<option value="0">The Phantom Of The Opera- Entr'acte</option>
<option value="1">The Rocky Horror picture Show- Time Warp</option>
<option value="2">Miss Saigon- Last night of the world</option>
<option value="3">The Beatles - Hey Jude</option>
<option value="4">The Beatles - Let It Be</option>
<option value="5">The Beatles - Lucy In the Sky With Diamonds</option>
<option value="6">The Beatles - Penny Lane</option>
<option value="7">The Beatles - Revolution</option>
<option value="8">The Beatles - Sergeant Pepper's Lonely Hearts Club Band</option>
<option value="9">The Beatles - Yellow Submarine</option>
<option value="10">The Beatles - Yesterday</option>
<option value="11">The Beatles - Taxman</option>
<option value="12">The Beatles - All You Need Is Love</option>
<option value="13">The Beatles - Hello, Goodbye</option>
<option value="14">The Beatles - Lady Madonna</option>
<option value="15">The Beatles - While My Guitar Gently Weeps</option>
<option value="16">The Beatles - Ob-La-Di, Ob-La-Da</option>
<option value="17">The Beatles - Ballad of John and Yoko</option>
<option value="18">The Beatles - Come Together</option>
<option value="19">The Beatles - Love Me Do</option>
<option value="20">The Beatles - Please Please Me</option>
<option value="21">The Beatles - She Loves You</option>
<option value="22">The Beatles - I Want to Hold Your Hand</option>
<option value="23">The Beatles - Can't Buy Me Love</option>
<option value="24">The Beatles - Hard Day's Night</option>
<option value="25">The Beatles - Eight Days A Week</option>
<option value="26">The Beatles - Ticket to Ride</option>
<option value="27">The Beatles - Help!</option>
<option value="28">The Beatles - We Can Work It Out</option>
<option value="29">The Beatles - Paperback Writer</option>

</SELECT>

<BR>

<BUTTON ID="BackButton" onClick="Back(forms['form'].playlist);">&nbsp;<<&nbsp;</BUTTON>

<BUTTON ID="PlayPauseButton" onClick="PlayPause(forms['form'].playlist);"><FONT color="000000">&nbsp;&nbsp;Play&nbsp;&nbsp;</FONT></BUTTON>

<BUTTON ID="NextButton" onClick="Next(forms['form'].playlist);">&nbsp;>>&nbsp;</BUTTON>&nbsp;

<BUTTON ID="StopButton" onclick="Stop();"><FONT color="7a7a7a">Stop</FONT></BUTTON>

<b><font size="3" color="cfcfef">Shuffle</font></b><INPUT TYPE=checkbox CHECKED ID="ShuffleSwitch" onclick="ToggleShuffle(this);" value="ON">

</FORM>

</CENTER>

 

<comment ID="PlayHTML"><FONT color="cfcfef">&nbsp;&nbsp;Play&nbsp;&nbsp;</FONT></comment>

<comment ID="ShuffleOnHTML"><INPUT TYPE=checkbox CHECKED ID="ShuffleSwitch" onclick="ToggleShuffle(this);"></comment>

<comment ID="ShuffleOffHTML"><INPUT TYPE=checkbox UNCHECKED ID="ShuffleSwitch" onclick="ToggleShuffle(this);"></comment>

 

<script ID="Main" Language="JavaScript">

var songs = new Array();

//*******************************//

//****** CHANGEABLE STUFF *******//

//*******************************//


var shuffle = true; // false = shuffle off, true = shuffle on

var autoStart = true; // false = autoStart off, true = autoStart on


var numberTracks = false; // true = place track number in front of list items, false = no track numbers


// Add song URLs here (make sure it matches up with the order you have for song info, and urls need quotes):

songs[0]=http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/3/7452/20517_2_1_05.asf;
songs[1]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/5/2673/11687_1_4_05.asf";
songs[2]="http://www-scf.usc.edu/~alexancl/song.mp3";
songs[3]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/7648_1_13_05.asf";
songs[4]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/7648_2_12_05.asf";
songs[5]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/9346_1_6_05.asf";
songs[6]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/7648_1_2_05.asf";
songs[7]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/7648_1_14_05.asf";
songs[8]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/9346_1_8_05.asf";
songs[9]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/9346_1_1_05.asf";
songs[10]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/6/6390_1_13_05.asf";
songs[11]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/3/6/15069_1_20_05.asf";
songs[12]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/7648_1_7_05.asf";
songs[13]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/7648_1_9_05.asf";
songs[14]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/7648_1_12_05.asf";
songs[15]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/7648_2_2_05.asf";
songs[16]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/7648_2_3_05.asf";
songs[17]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/7648_2_6_05.asf";
songs[18]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/4/6/7648_2_9_05.asf";
songs[19]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/6/6390_1_1_05.asf";
songs[20]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/6/6390_1_2_05.asf";
songs[21]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/6/6390_1_4_05.asf";
songs[22]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/6/6390_1_5_05.asf";
songs[23]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/6/6390_1_7_05.asf";
songs[24]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/6/6390_1_8_05.asf";
songs[25]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/6/6390_1_10_05.asf";
songs[26]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/6/6390_1_12_05.asf";
songs[27]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/6/6390_2_1_05.asf";
songs[28]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/6/6390_2_3_05.asf";
songs[29]="http://a425.v8384d.c8384.g.vm.akamaistream.net/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/8512/wmp/0/6/6390_2_11_05.asf";


//*******************************//

//*******************************//

// Initializations //

with (document){

var length = forms['form'].playlist.length;

if(numberTracks){

for (var i = 0; i < length; i++){

forms['form'].playlist.options[i].innerHTML = (i+1) + " - " + forms['form'].playlist.options[i].innerHTML;

}

}


if (shuffle) {

var randsg = Math.floor(Math.random()*songs.length);

Player.url = songs[randsg];

forms['form'].playlist.options[randsg].selected = true;

forms['form'].ShuffleSwitch.outerHTML = ShuffleOnHTML.innerHTML;

}

else {

forms['form'].ShuffleSwitch.outerHTML = ShuffleOffHTML.innerHTML;

Player.url = songs[0];

}

if(autoStart){

var snum = forms['form'].playlist.selectedIndex;

if(Player.url != songs[snum]){

Player.url = songs[snum];

}

Player.controls.Play();

}

}

// Functions //

// Discription: "PlayPause" will toggle playing and pausing if the same song is still selected,

// otherwise it will load the newly selected song

function PlayPause(list) {

var snum = list.selectedIndex;


if((Player.url == songs[snum] && Player.url != "") && Player.playState != 1){

if(Player.playState == 3){

Player.controls.Pause();

}


else {

Player.controls.Play();

}

}

else {

Player.url = songs[snum];

Player.controls.Play();

}

}

// Discription: "Next" will move to the next music file if shuffle is off

// otherwise it will load a random song. Calls PlayPause to start music.

function Next(list) {

var snum = list.selectedIndex;

if (!shuffle) {

if (snum == list.length-1) {

snum = -1;

}

snum++;

}


else {

var temp;

do{

temp = Math.floor(Math.random()*songs.length);

} while(temp == snum);

snum = temp;

}


list.options[snum].selected = true;

PlayPause(list);

}

// Discription: "Back" does the same thing as "Next" but moves backwads

// through the list. If shuffle is on then picks a random song.

function Back(list) {

var snum = list.selectedIndex;

if (!shuffle) {

if (snum == 0){

snum = list.length;

}

snum--;

}


else {

var temp;

do{

temp = Math.floor(Math.random()*songs.length);

} while(temp == snum);

snum = temp;

}


list.options[snum].selected = true;

PlayPause(list);

}

// Discription: Self explanitory.

function Stop(){

Player.controls.Stop();

}

// Discription: Makes the shuffle flag the same as the status of the CheckBox

// The status of the checkbox (true/false) indicates if the box is checked

function ToggleShuffle(CheckBox) {

shuffle = CheckBox.status;

}

</SCRIPT>

<script ID="StateChangeHandler" Language = "JavaScript" For = "Player" Event = playStateChange(NewState)>

// Description: This is an interupt handler used to handle instances when the

// state of the player changes to play or stop for example.

//STATE.innerText = NewState;

switch(NewState){

case 8: // Handles player after it just finishes playing through a song

var num = document.forms['form'].playlist.selectedIndex;


if (!shuffle){

if(num == document.forms['form'].playlist.length-1){

num = -1;

}


num++;

}

else {

var temp;

do{

temp = Math.floor(Math.random()*songs.length);

} while(temp == num);

num = temp;

}


document.forms['form'].playlist.options[num].selected = true;


PreviousState = NewState;

break;

case 1: // Handles player after it stops

if(PreviousState == 8){

var num = document.forms['form'].playlist.selectedIndex;

Player.settings.autoStart = true;

Player.url = songs[num];

PreviousState = NewState;

}


else if (PreviousState != 3 && PreviousState != 2){

Player.controls.Play();

Player.settings.autoStart = false;

}


else{

forms['form'].PlayPauseButton.innerHTML = PlayHTML.innerHTML;

}

break;

case 3: // Handles player after it starts to play

PreviousState = NewState;

forms['form'].PlayPauseButton.innerHTML = "Pause";

shuffle = document.forms['form'].ShuffleSwitch.status;

break;

case 2: // Handles player after being paused

PreviousState = NewState;

forms['form'].PlayPauseButton.innerHTML = PlayHTML.innerHTML;

break;

default:

}

</script>


Monday, September 26, 2005

 


If you like our site please put this picture link in your own xanga!A

#

311 - All Mixed Up
311 - Amber
311 - Creatures
311 - Down
311 - Love Song
3 Doors Down - Landing on London feat. Bob Seger
50 Cent - 21 Questions
50 Cent - Candy Shop
50 Cent - Disco Inferno
50 Cent - In Da Club
50 Cent - Just A Lil Bit
50 Cent - Many Men (Wish Death)
50 Cent - P.I.M.P.
The 5th Dimension - Age of Aquarius/Let the Sunshine In

A

A Perfect Circle - 3 Libras
A Perfect Circle - The Outsider
A Perfect Circle - Passive
A Perfect Circle - Weak and Powerless
AC/DC - Back In Black
AC/DC - Ballbreaker
AC/DC - Big Gun
AC/DC - Dirty Deeds (Done Dirt Cheap)
AC/DC - For Those About to Rock (We Salute You)
AC/DC - Hell's Bells
AC/DC - Highway to Hell
AC/DC - Long Way to the Top
AC/DC - Money Talks
AC/DC - Thunderstruck
AC/DC - T.N.T.
AC/DC - You Shook Me All Night Long
Adam Sandler - The Chanukah Song
Adam Sandler - Dip Doodle
Adam Sandler - Grow Old With You
Adam Sandler - Lunch Lady Land
Adam Sandler - Somebody Kill Me
Aerosmith - Amazing
Aerosmith - Baby, Please Don't Go
Aerosmith - Crazy
Aerosmith - Cryin'
Aerosmith - Dream On
Aerosmith - Dude (Looks Like A Lady)
Aerosmith - I Don't Want to Miss A Thing
Aerosmith - Jaded
Aerosmith - Janie's Got A Gun
Aerosmith - Just Push Play
Aerosmith - Livin' On the Edge
Aerosmith - Love In An Elevator
Aerosmith - Pink
Aerosmith - Sweet Emotion
Aerosmith feat. Run DMC - Walk This Way
AFI - Girl's Not Grey
AFI - The Leaving Song
AFI - The Leaving Song, Part 2
AFI - Silver and Cold
Afro Man - Because I Got High
Afro Man - Colt 45
Afro Man - Hush
Al Green - Let's Stay Together
Alice Cooper - School's Out
Alice in Chains - Angry Chair
Alice in Chains - Angry Chair (Unplugged)
Alice in Chains - Brother
Alice in Chains - Brother (Unplugged)
Alice in Chains - Down in A Hole
Alice in Chains - Down in A Hole (Unplugged)
Alice in Chains - Frogs
Alice in Chains - Frogs (Unplugged)
Alice in Chains - Got Me Wrong
Alice in Chains - Got Me Wrong (Unplugged)
Alice in Chains - Heaven Beside You
Alice in Chains - Heaven Beside You (Unplugged)
Alice in Chains - Killer Is Me (Unplugged)
Alice in Chains - Man in the Box
Alice in Chains - No Excuses
Alice in Chains - No Excuses (Unplugged)
Alice in Chains - Nutshell
Alice in Chains - Nutshell (Unplugged)
Alice in Chains - Over Now
Alice in Chains - Over Now (Unplugged)
Alice in Chains - Right Turn
Alice in Chains - Rooster
Alice in Chains - Rooster (Unplugged)
Alice in Chains - Sludge Factory
Alice in Chains - Sludge Factory (Unplugged)
Alice in Chains - Them Bones
Alice in Chains - Would?
Alice in Chains - Would? (Unplugged)
Alien Ant Farm - Glow
Alien Ant Farm - Smooth Criminal
Alien Ant Farm - These Days
Alison Kraus - Down in the River to Pray
Alkaline Trio - Every Thug Needs A Lady
Alkaline Trio - This Could Be Love
Alkaline Trio - We've Had Enough
All-American Rejects - Dirty Little Secret
Allman Brothers - Midnight Rider (Version 1)
Allman Brothers - Midnight Rider (Version 2)
America - Horse With No Name
Apartment 26 - Give Me More
The Apex Theory - Apossibly
Audio Adrenaline - Big House
Audio Adrenaline - Hands and Feet
Audio Adrenaline - Walk on Water
Audioslave - #1 Zero
Audioslave - Be Yourself
Audioslave - Bring 'Em Back Alive
Audioslave - Cochise
Audioslave - The Curse
Audioslave - Dandelion
Audioslave - Doesn't Remind Me
Audioslave - Drown Me Slowly
Audioslave - Exploder
Audioslave - Gasoline
Audioslave - Getaway Car
Audioslave - Heaven's Dead
Audioslave - Hypnotize
Audioslave - I Am the Highway
Audioslave - The Last Remaining Light
Audioslave - Light My Way
Audioslave - Like A Stone
Audioslave - Man or Animal
Audioslave - Out of Exile
Audioslave - Set It Off
Audioslave - Shadow on the Sun
Audioslave - Show Me How To Live
Audioslave - Your Time Has Come
Audioslave - What You Are
Audioslave - The Worm
Audioslave - Yesterday to Tomorrow

B

The B-52's - Love Shack
The B-52's - Rock Lobster
Bachman Turner Overdrive - Takin' Care of Business
Barenaked Ladies - One Week
Beach Boys - Be True to Your School
Beach Boys - 409
Beach Boys - Barbara Ann
Beach Boys - California Girls
Beach Boys - Don't Worry, Baby
Beach Boys - Fun, Fun, Fun
Beach Boys - God Only Knows
Beach Boys - Good Vibrations
Beach Boys - Help Me, Rhonda
Beach Boys - I Get Around
Beach Boys - Kokomo
Beach Boys - Little Deuce Coupe
Beach Boys - Surfer Girl
Beach Boys - Surfin' USA
Beastie Boys - Fight For Your Right (To Party)
The Beatles - All You Need Is Love
The Beatles - Ballad of John and Yoko
The Beatles - Can't Buy Me Love
The Beatles - Come Together
The Beatles - Eight Days A Week
The Beatles - Eleanor Rigby
The Beatles - Get Back
The Beatles - Hard Day's Night
The Beatles - Hello, Goodbye
The Beatles - Help!
The Beatles - Helter Skelter
The Beatles - Hey Jude 
The Beatles - I Want to Hold Your Hand
The Beatles - I Will
The Beatles - Lady Madonna
The Beatles - Let It Be
The Beatles - Love Me Do
The Beatles - Lucy in the Sky with Diamonds
The Beatles - Ob-La-Di, Ob-La-Da
The Beatles - Paperback Writer
The Beatles - Penny Lane
The Beatles - Please Please Me
The Beatles - Revolution
The Beatles - Sergeant Pepper's Lonely Hearts Club Band
The Beatles - She Loves You
The Beatles - Taxman
The Beatles - Ticket to Ride
The Beatles - We Can Work It Out
The Beatles - While My Guitar Gently Weeps
The Beatles - Yellow Submarine
The Beatles - Yesterday
Beck - Derelict
Beck - Devil's Haircut
Beck - High 5 (Rock the Catskills)
Beck - Hotwax
Beck - Jackass
Beck - Lord Only Knows
Beck - Loser
Beck - Minus
Beck - The New Pollution
Beck - Novocaine
Beck - Ramshackle
Beck - Readymade
Beck - Sissyneck
Beck - Where It's At (Two Turntables and A Microphone)
Bee Gees - Night Fever
Bee Gees - Staying Alive
Beenie Man - Who Am I?
Ben Folds Five - Brick
Big & Rich - Big Time
Big & Rich - The Bob Song
Big & Rich - Deadwood Mountain
Big & Rich - Drinkin' 'Bout You
Big & Rich - Holy Water
Big & Rich - Kick My Ass
Big & Rich - Live This Life
Big & Rich - Love Train (Blue Collar TV Theme)
Big & Rich - Never Been Down
Big & Rich - Real World
Big & Rich - Rollin' (The Ballad of Big & Rich)
Big & Rich - Save A Horse, Ride A Cowboy
Big & Rich - Saved
Big & Rich - Six Foot Town
Big & Rich - Wild West Show
Billie Holiday - The Very Thought of You
Billy Idol - Dancing With Myself
Billy Talent - Try Honesty
Black Crowes - Hard to Handle
Black Crowes - Remedy
Black Crowes - She Talks to Angels
Black Crowes - She Talks to Angels (Acoustic)
Black Sabbath - Electric Funeral
Black Sabbath - Hand of Doom
Black Sabbath - Iron Man
Black Sabbath - Jack the Stripper/Fairies Wear Boots
Black Sabbath - Paranoid
Black Sabbath - Planet Caravan
Black Sabbath - Rat Salad
Black Sabbath - War Pigs/Luke's Wall
Blake Shelton - Austin
Blake Shelton - Ol' Red
Blessid Union of Souls - Hey Leonardo! (She Likes Me For Me)
Blink 182 - Adam's Song
Blink 182 - All the Small Things
Blink 182 - The Rock Show
Blink 182 - Stay Together for the Kids
Blink 182 - What's My Age Again?
Bloodhound Gang - Bad touch
Blood, Sweat and Tears - God Bless the Child
Blood, Sweat and Tears - Spinning Wheel
Blood Brothers - My First Kiss at the Public Execution
Blood Brothers - Trash Flavored Trash
Blue Oyster Cult - Don't Fear the Reaper
Blues Traveler - Run Around
Bob Dylan - Dear Landlord
Bob Dylan - Knockin' on Heaven's Door
Bob Marley - I Shot the Sheriff
Bob Marley - No Woman, No Cry
Bob Seger - Night Moves
Bob Seger - Old Time Rock & Roll
Bob Seger - Turn the Page
Bobby Darin - Beyond the Sea
Bobby Darin - Mack the Knife
Bobby Darin - Simple Song of Freedom
Bobby Darin - Splish, Splash
Bonnie Raitt - Love Me Like A Man
Boston - More Than A Feeling
Bowling for Soup - 1985
Bowling for Soup - Almost
Bowling for Soup - Ohio (Come Back to Texas)
Brand New - The Boy Who Blocked His Own Shot
Brand New - Good to Know That If I Ever Need Your Attention All I Have To Do is Die
Brand New - Guerina
Brand New - I Will Play My Game Beneath the Spin Light
Brand New - Jaws Theme Swimming
Brand New - Me vs. Maradonna vs. Elvis
Brand New - Okay, I Believe You, But My Tommy Gun Don't
Brand New - Play Crack the Sky
Brand New - The Quiet Things That No One Ever Knows
Brand New - Sic Transit Gloria, Glory Fades
Brand New - Tautou
The Bravery - An Honest Mistake
The Bravery - Fearless
The Bravery - Give In
The Bravery - No Brakes
The Bravery - Out of Line
The Bravery - Public Service Announcement
The Bravery - The Ring Song
The Bravery - Rites of Spring
The Bravery - Swollen Summer
The Bravery - Tyrant
The Bravery - Unconditional
Breaking Benjamin - Away
Breaking Benjamin - Believe
Breaking Benjamin - Break My Fall
Breaking Benjamin - Breakdown
Breaking Benjamin - Firefly
Breaking Benjamin - Follow
Breaking Benjamin - Forget It
Breaking Benjamin - Polyamorous
Breaking Benjamin - Rain
Breaking Benjamin - Simple Design
Breaking Benjamin - So Cold
Breaking Benjamin - Sooner or Later
Brian Setzer - Malaguena
Bruce Springsteen - Born in the USA
Buddy Holly - Maybe, Baby
The Buggles - Video Killed the Radio Star
Bush - The Chemicals Between Us
Bush - Greedy Fly
The Byrds - Turn!Turn!Turn!

C

Cake - Never There
Cake - No Phone
Cake - Short Skirt, Long Jacket
Chad Kroeger feat. Josey Scott - Hero
The Champs - Tequila
Charlie Daniels Band - The Devil Went Down to Georgia
Charlie Daniels Band - Long Haired Country Boy
Charlie Daniels Band - Uneasy Rider
Cheap Trick - That 70's Song (Theme from That 70's Show)
Chevelle - An Evening With El Diablo
Chevelle - Another Know It All
Chevelle - Anticipation
Chevelle - Bend the Bracket
Chevelle - Blank Earth
Chevelle - Breach Birth
Chevelle - The Clincher
Chevelle - Closure