﻿function playYouTube(id) {
    var closeText = SSNContext.Section.Language == 'fo-FO' ? 'lat aftur' : 'luk';
    closeText = SSNContext.Section.Language == 'en-US' ? 'close' : 'luk';
    $('#YouTubePlayer').remove();
    var extraparam = '&autoplay=1&fs=1&rel=0';
    var yt = $('<div id="YouTubePlayer">' +
          '<a onclick="$(\'#YouTubePlayer\').remove();">' + closeText + '</a>' +
		  '<object width="425" height="349">' +
			  '<param name="movie" value="http://www.youtube.com/v/' + id + extraparam + '"></param>' +
			  '<param name="allowFullScreen" value="true"></param>'+
			  '<param name="allowscriptaccess" value="always"></param>'+
			  '<embed src="http://www.youtube.com/v/' + id + extraparam + '" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="349"></embed>' +
		  '</object>'+
	  '</div>')
    $('body').append(yt);
}