function loadDefault(defId,defTitle,defDesc) {
	
	var defEmbed = "<embed style=\"width: 350px; height: 304px;\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" allowscriptaccess=\"always\" allowfullscreen=\"true\" src=\"http://mediaservices.myspace.com/services/media/embed.aspx/m="+defId+",t=1,mt=video,ap=1,searchID=,primarycolor=,secondarycolor=\"/>";
	
	document.getElementById("videoPlayer").innerHTML = defEmbed
		
	document.getElementById("videoDesc").innerHTML = defDesc;
	
}

function loadVideo(vidId,vidTitle,vidDesc) {
	
	var vidEmbed = "<embed style=\"width: 350px; height: 304px;\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" allowscriptaccess=\"always\" allowfullscreen=\"true\" src=\"http://mediaservices.myspace.com/services/media/embed.aspx/m="+vidId+",t=1,mt=video,ap=1,searchID=,primarycolor=,secondarycolor=\"/>";
	
	document.getElementById("videoPlayer").innerHTML = vidEmbed;
		
	document.getElementById("videoDesc").innerHTML = vidDesc;
	
}