if (is_seo == 0 && swfobject.hasFlashPlayerVersion("9.0.0")) {
        
// due to a bug with flash stage.stageWidth/Height sometimes initially returning 0, a workaround is too pass in the width and height via flashvars
var browserViewportWidth;
var browserViewportHeight;
// the more standards compliant browsers (mozilla/netscape/opera/IE7) use
// window.innerWidth and window.innerHeight
if (typeof window.innerWidth != 'undefined') {
	browserViewportWidth = window.innerWidth, browserViewportHeight = window.innerHeight
}
// IE6 in standards compliant mode (i.e. with a valid doctype as the first line
// in the document)
else if (typeof document.documentElement != 'undefined'
		&& typeof document.documentElement.clientWidth != 'undefined'
		&& document.documentElement.clientWidth != 0) {
	browserViewportWidth = document.documentElement.clientWidth,
			browserViewportHeight = document.documentElement.clientHeight
}
// older versions of IE
else {
	browserViewportWidth = document.getElementsByTagName('body')[0].clientWidth,
	browserViewportHeight = document.getElementsByTagName('body')[0].clientHeight
}
    
var flashvars = {};
flashvars.browserViewportWidth = browserViewportWidth;
flashvars.browserViewportHeight = browserViewportHeight;
flashvars.configUrl = '/config.xml';
var params = {};
params.allowfullscreen = "true";
var attributes = {};
attributes.id = "lhcFlash";
swfobject.embedSWF("/RenaultTV.swf", "rtv", "100%", "100%", "9.0.0", "/expressInstall.swf", flashvars, params, attributes);
    
} else {
    is_seo = 1;
}
