function ShowVideo(obj) {
	var vWidth = 400;
	var vHeight = 300;
	var popLeft = Math.round( ( (screen.width||800) - vWidth ) / 2 );
	var popTop = Math.round( ( (screen.height||600) - vHeight ) / 2 );
	var rnd = Math.round(Math.random()*999999);
	var html = '<embed src="'+obj.href+'" url="'+obj.href+'" width="400" height="300" '+
		'autostart="1" showcontrols="1" type="application/x-mplayer2" '+
		'pluginspage="http://www.microsoft.com/windows/windowsmedia/download/"> '+
		'</embed>';
	pop = window.open("", "pop"+rnd, 'left='+popLeft+',top='+popTop+',height='+vHeight+',width='+vWidth+',modal');
	//pop.document.getElementById('videoblock').innerHTML = html;
	
	pop.document.open();
	pop.document.write('<html><title>Видео</title><body bgcolor="#2c3242" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'+html+'</body></html>');
	pop.document.close();
}

