
<!--
if (document.referrer.indexOf("travelocity.com") == -1 && window.location.href.indexOf('resu') == -1)
// 1st condition returns true if person is NOT already browsing at travelocity.com
// 2nd condition returns true if person has NOT already been redirected in this session
{
var nth = 750;
// 1 in nth people will be selected to get popup window triggered by webeffredirect()
var rnd = Math.floor(Math.random() * nth) + 1;
if (rnd == nth) {
webeffredirect();
}
}

function webeffredirect()
{
location.replace("http://resu.travelocity.com/cbbgt/e52sxrqr3x"+"?"+"referrer="+document.referrer+"&dd="+window.location.href);
}

//-->
