google.load("swfobject", "2.1");

function openVideo()
{
	var video = document.getElementById('image_video');
	video.style.top			= '100px';
	video.style.left		= ((document.width / 2) - 360)+'px';
	video.style.visibility 	= 'visible';
	video.style.width	   	= '720px';
	video.style.height	   	= '360px';
	
	ytplayer = document.getElementById("myytplayer");
	window.setTimeout('playVideo();', 500);
}

function playVideo() 
{
	ytplayer.loadVideoById(VIDEO_ID, 0);
	ytplayer.playVideo();	
}

function closeVideo()
{
	ytplayer.stopVideo();
	var video = document.getElementById('image_video');
	video.style.top			= '100px';
	video.style.left		= ((document.width / 2) - 360)+'px';
	video.style.visibility 	= 'hidden';
	video.style.width	   	= '0';
	video.style.height	    = '0';
}