var obj_logPath = new Array();
obj_logPath.push({pathname:'/', logPath:'home'});
obj_logPath.push({pathname:'/top/', logPath:'top'});
obj_logPath.push({pathname:'/search/?q=Futbol', logPath:'futbol'});
obj_logPath.push({pathname:'/search/?q=Formula1', logPath:'formula1'});
obj_logPath.push({pathname:'/search/?q=Baloncesto', logPath:'baloncesto'});
obj_logPath.push({pathname:'/search/?q=Tenis', logPath:'tenis'});
obj_logPath.push({pathname:'/search/?q=Motociclismo', logPath:'motociclismo'});
obj_logPath.push({pathname:'/search/?q=Ciclismo', logPath:'ciclismo'});
obj_logPath.push({pathname:'/search/?q=Rally', logPath:'rally'});

var v_url = location.href;
var v_hostname = location.hostname;
var v_from = v_url.indexOf(v_hostname)+v_hostname.length;
var v_pathname = v_url.substring(v_from);

var logPath = "otros";
for (var i=0;i<obj_logPath.length;i++)
{
	if (obj_logPath[i].pathname == v_pathname)
	{
		logPath = obj_logPath[i].logPath;
	}
}

var logDomain = "www.segundosfuera.com";
var logChannel = "videos";
var logPage = "index";
var bannerDomain = "videos.deportes.orange.es";


var result = ''
result += '<script src="http://www.orange.es/orange/js/logs.js" type="text/javascript"><' + '/script>\r\n<script src="http://www.orange.es/orange/js/bannerWoo.js" type="text/javascript"><' + '/script>\r\n';

document.write(result)


