
// to fix realurl


//function tcfgoto(url) {
//	if (url.substring(0,4) != 'http') url = 'http://www.thomascook.fr/' + url;
//      window.location.href = url;
//}

// to fix realurl 
function tcfgoto(url) {
        var isHttp = new RegExp("^http(|s)://","");
	if ( ! isHttp.test(url)) {
		url = window.location.protocol + "//" + window.location.host  + "/"  + url;
	}
	
 	if(window.opener) 
            window.opener.location.href = url;
        else if(window.parent) 
            window.parent.location.href = url;
        else
            self.location.href= url;
}