  function play(id)
    {
     var html  = '';
	 html += '<h4 id="video_content"><?php echo $title ?></h4>';
	 html += '<div>';
     html += '<object width="425" height="344">';
     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" wmode="opaque" width="425" height="344">';
	 html += '</embed></div>';
     return html;
    };

