function embedYoutube(src, width, height, target)
{
	var youtubeObject = '<object width="'+width+'" height="'+height+'"><param name="movie" value="'+src+'"></param><param name="wmode" value="transparent"></param><embed src="'+src+'" type="application/x-shockwave-flash" wmode="transparent" width="'+width+'" height="'+height+'"></embed></object>';
	document.getElementById(target).innerHTML = youtubeObject; 
}