var adjSize;
function adjustSize()
{
	var Video = $('videoshow');
	var Player = $('player');
	
	Video.setStyle('width', window.getSize().x);
	Video.setStyle('height', window.getSize().y);
	
	Player.setStyle('left', Math.round((window.getSize().x-480)/2));
	Player.setStyle('top', Math.round((window.getSize().y-295)/2)-50);
}
function ShowVideo(id)
{
	adjustSize();
	adjSize = setInterval('adjustSize();',100);
	var Video = $('videoshow');
	var Player = $('player');
	Player.fade('hide');
	Video.fade('hide');
	Video.setStyle('display','block');
	Player.setStyle('display','block');
	
	Player.innerHTML = '<object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/'+id+'&autoplay=1&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/'+id+'&autoplay=1&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295" wmode="transparent"></embed></object>';
	Video.fade(0.75);
	Player.fade('in');
}
function CloseVideo()
{
	clearInterval(adjSize);
	var Video = $('videoshow');
	var Player = $('player');
	Player.innerHTML = '';
	Player.fade('out');
	Video.fade('out');
}