// JavaScript Document
function showVideo(id,title)
{
	lyr=document.getElementById('VideoContainer');
	if (lyr)
	{
		lyr.innerHTML='<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/'+id+'&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/'+id+'&hl=en&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object>';
	}
	lyr=document.getElementById('VideoTitle');
	if (lyr)
	{
		lyr.innerHTML=title;
	}	

}

