function loadVideo(videoId,videoTitle,videoDesc){
		
		var videoEmbed = "<embed style=\"width: 600px; height: 325px;\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" allowscriptaccess=\"always\" allowfullscreen=\"true\" src=\"http://mediaservices.myspace.com/services/media/embed.aspx/m="+videoId+",t=1,mt=video,hb=true,ap=1,searchID=,primarycolor=,secondarycolor=\"/>";
				
		var blogBody = '<a href=\'http://vids.myspace.com/index.cfm?fuseaction=vids.individual&videoid='+videoId+'\'>'+videoTitle+'</a><br/><br/><embed width=\'388\' height=\'237\' src=\'http://mediaservices.myspace.com/services/media/embed.aspx/m='+videoId+',t=1,mt=video,searchID=,primarycolor=,secondarycolor=\' allowfullscreen=\'true\' allowscriptaccess=\'sameDomain\' type=\'application/x-shockwave-flash\'/><br/><br/>'+videoDesc+'<br/><br/>';			
		
		document.getElementById('videoPlayer').innerHTML = videoEmbed;
		document.getElementById('videoTitle').innerHTML = videoTitle;
		document.getElementById('videoDesc').innerHTML = videoDesc;		
		document.postBlog.subject.value = videoTitle;
		document.postBlog.body.value = blogBody;
		document.postBulletin.subject.value = videoTitle;
		document.postBulletin.body.value = blogBody;
		document.getElementById('emailLink').setAttribute('href','http://vids.myspace.com/index.cfm?fuseaction=vids.email&videoid='+videoId);
		document.getElementById('videoLink').value = 'http://myspacetv.com/index.cfm?fuseaction=vids.individual&videoid='+videoId;
		document.getElementById('videoCode').value = "<a href='http://vids.myspace.com/index.cfm?fuseaction=vids.individual&videoid='+videoId+'\">'+videoTitle+'</a><br/><object width='425px' height='360px' ><param name='allowFullScreen' value='true'/><param name='movie' value='http://mediaservices.myspace.com/services/media/embed.aspx/m='+videoId+',t=1,mt=video,hb=true,searchID=,primarycolor=,secondarycolor='/><embed src='http://mediaservices.myspace.com/services/media/embed.aspx/m='+videoId+',t=1,mt=video,hb=true,searchID=,primarycolor=,secondarycolor=' width='425' height='360' allowFullScreen='true' type='application/x-shockwave-flash' /></object>";

}