

function PreviewSong(artistName, songTitle, songURL, imageURL)
{	
		PreviewSong_Flash(artistName, songTitle, songURL, imageURL)	
}

function PreviewSong_Flash(artistName, songTitle, songURL, imageURL)
{
	
	if((songURL.length==0) || (songURL.toUpperCase().indexOf(".WMA") != -1))
	{
		songURL="";
		setFlashVariables('sendmovie','artistName='+artistName+'&songName='+songTitle+'&groovePath='+songURL+'&coverPath='+imageURL);
		alert("Sorry, the preview for this song is presently not available.");	
		return;
	}
	setFlashVariables('sendmovie','artistName='+artistName+'&songName='+songTitle+'&groovePath='+songURL+'&coverPath='+imageURL);
}

