function loadVideo(videoID,videoTitle,videoDesc){
	document.getElementById("videoPlayer").innerHTML = "<object width='385px' height='300px' ><param name='allowFullScreen' value='true'/><param name='wmode' value='transparent'/><param name='movie' value='http://mediaservices.myspace.com/services/media/embed.aspx/m="+videoID+",t=1,mt=video,ap=0,searchID=,primarycolor=,secondarycolor='/><embed src='http://mediaservices.myspace.com/services/media/embed.aspx/m="+videoID+",t=1,mt=video,ap=0,searchID=,primarycolor=,secondarycolor=' width='385' height='300' allowFullScreen='true' type='application/x-shockwave-flash' wmode='transparent'/></object>";
	document.getElementById("videoTitle").innerHTML = videoTitle;
	document.getElementById("videoDesc").innerHTML = videoDesc;
}