  function play(id)
    {
     var html  = '';
     html += '<object width="405" height="328">';
     html += '<param name="movie" value="http://www.youtube.com/v/'+id+'&hl=en&fs=1&rel=0&autoplay=1"></param>';
     html += '<param name="allowFullScreen" value="false"></param>';
     html += '<param name="allowscriptaccess" value="always"></param>';
     html += '<param name="wmode" value="opaque">';
     html += '<embed src="http://www.youtube.com/v/'+id+'&hl=en&fs=1&rel=0&autoplay=1" '
     html += 'type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="405" height="328">';
     return html;
    };
