// JavaScript Document

String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ""); };

function isShowVideoAvailable()
{
	if(document.getElementById("youtube"))
	{
		var videofile=document.getElementById("youtube").innerHTML;
		videofile=videofile.trim();
		showVideo(videofile);
	}
}
function showVideo(video)
{

	var videoHtml="";	

	videoHtml = videoHtml + '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="425" height="350"><param name="autostart" value="false" /><param name="movie" value="http://www.youtube.com/v/'+video+'"></param><embed autostart="false" src="http://www.youtube.com/v/'+video+'" type="application/x-shockwave-flash" width="425" height="350"></embed></object>\n';	
	videoHtml = videoHtml + '<br/>Click play to see';
	document.getElementById("youtube").innerHTML=videoHtml;	
}
window.onload = isShowVideoAvailable;