// JavaScript Document
function launchPlayer(s_id,title){
	var genre = 'remixes';
	player= window.open ('player.php?id='+s_id+'&genre='+genre, title,'location=0,status=0,scrollbars=0,menubar=no,resizable=no,width=480,height=290');
}

function launchPlayerRemote(urlPrefix, s_id, title, path, artist, song_name, bitrate) {
	player= window.open (urlPrefix + 'player.php?id='+s_id+'&path='+path+'&artist='+artist+'&song_name='+song_name+'&bitrate='+bitrate, title,'location=0,status=0,scrollbars=0,menubar=no,resizable=no,width=480,height=290');
}

function launchPlayerSendspace(s_id,title){
	var genre = 'remixes';
	player= window.open ('player.php?id='+s_id+'&genre='+genre, title,'location=0,status=0,scrollbars=0,menubar=no,resizable=no,width=480,height=290');
}

function launchVideoPlayerSendspace(s_id,title){
	var genre = 'remixes';
	player= window.open ('playervid.php?id='+s_id+'&genre='+genre, title,'location=0,status=0,scrollbars=0,menubar=no,resizable=no,width=480,height=290');
}

function launchVideoPlayer(s_id,title){
	var genre = 'remixes';
	player= window.open ('playervid.php?id='+s_id+'&genre='+genre, title,'location=0,status=0,scrollbars=0,menubar=no,resizable=no,width=480,height=290');
}

