function swfCheck(url,url2) {
	var x = parseInt(GetSwfVer()); 
	if (x > 7) tb_show('Video',url); // Flash > 7 
	else location.href = url2; // Flash < 7 or no Flash
	}
	
function showVideo(elm) {
	var x = parseInt(GetSwfVer());
 	// Flash > 7
	if (x > 7) {
		url = elm.href + '?&no_cache=1&boxview=1&height=302&width=717&scrolling=no&KeepThis=true&TB_iframe=true'
		url2 = elm.href + '?&no_cache=1&boxview=1'
                
        //tb_show('XXXLutz <span style="color: #DD0000;">Living TV</span>',url);
        jQuery.fn.colorbox({href:url2, innerWidth:747,innerHeight:314, initialWidth: 0, initialHeight: 0, iframe: true, scrolling: false, title: jQuery(elm).find('img').attr('alt')});
		}
	// Flash < 7 or no Flash
	else location.href = url = link.href;
	}
