function openThis(o)
{
	var h = o.href;
	var vid = h.substr (h.indexOf("=")+1);

	var x = window.open('','tubeWindow','width=320,height=260,resizable=1');
	x.focus();
	if( !x ) { return true; } //browser is blocking popups

	var contents;

	contents = "<html><head><title>Milan Svoboda Videos<\/title><\/head><body style='margin:0px;padding:0px;background-color:black'>";
	contents+= '<object width="320" height="260"><param name="movie" value="http://www.youtube.com/v/'+vid+'&autoplay=1"><\/param><embed src="http://www.youtube.com/v/'+vid+'&autoplay=1" type="application/x-shockwave-flash" width="320" height="260"><\/embed><\/object>';

	x.document.open();
	x.document.write(contents);
	x.document.close();

	return false;

}
