//
// Insert a YouTube video
//
function nkCreateYouTubeObject(YouTubeVideoURL, DivID)
{
    var obHTML = '<object width="320" height="268">' +
                    '<param name="movie" value="' + YouTubeVideoURL + '">' + 
                    '<\/param>' + 
                    '<param name="wmode" value="transparent">' + 
                    '<\/param>' + 
                    '<embed src="' + YouTubeVideoURL + '" type="application\/x-shockwave-flash" wmode="transparent" width="320" height="268">' + 
                    '<\/embed>' + 
                  '<\/object>';
                  
    document.getElementById(DivID).innerHTML = obHTML;
}


