function YouTubeSingle(videoid,width,height)
{
	document.write('<embed src="http://www.youtube.com/v/'+videoid+'&rel=0" \n');
	document.write('type="application/x-shockwave-flash" wmode="transparent" \n');
	document.write('width="'+width+'" height="'+height+'" wmode="transparent"></embed>\n');
        
}

function YouTubeMultiMedia(videoid,width,height)
{
	document.write('<embed src="http://www.youtube.com/v/'+videoid+'&rel=0&autoplay=1" \n');
	document.write('type="application/x-shockwave-flash" wmode="transparent" \n');
	document.write('width="'+width+'" height="'+height+'" wmode="transparent"></embed>\n');
}
  
