// JavaScript Document
function change_audio_window (change_artist, change_title, change_album, change_link, change_image, change_mix, change_id)
{
	new_location = "flash/music_box.asp?id=" + change_id + "&artist=" + change_artist + "&title=" + change_title + "&album=" + change_album + "&audio_link=" + change_link + "&image=" + change_image + "&mix=" + change_mix;
		
	var number_of_frames = top.window.length;
		
	if (number_of_frames > 0)
	{
		top.client_music.location.href = new_location;
	} else {
		new_window = window.open (new_location, "client_music", "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=230,height=120,left=300,top=300");
	}	
}

