function swfCheck(url,url2) {
 	//if(title == undefined) title='Video'
	var x = parseInt(GetSwfVer());
 	// Flash > 7
	if (x > 7) tb_show('Video',url);
	// Flash < 7 or no Flash
	else location.href = url2;
	}
	
function showVideo(link) {
 	//if(title == undefined) title='Video'
	var x = parseInt(GetSwfVer());
 	// Flash > 7
	if (x > 7) {
		//url = link.href + '?&no_cache=1&boxview=1&height=337&width=718&modal=true&noscroll=true&KeepThis=true&TB_iframe=true'
		url = link.href + '?&no_cache=1&boxview=1&height=302&width=717&scrolling=no&KeepThis=true&TB_iframe=true'
		//alert(url);
		tb_show('XXXLutz <span style="color: #DD0000;">Living TV</span>',url);
		}
	// Flash < 7 or no Flash
	else location.href = url = link.href;
	}