function rhr(COOKIE_NAME) { 
var URL_SITIO, referer, index, reemplazo, protocol, comparacion
URL_SITIO="www.santandersantiago.cl";
referer=document.referrer; 
index=referer.indexOf(URL_SITIO);
reemplazo=location.hostname;

if (location.port!=80) reemplazo=reemplazo+":"+location.port; 
reemplazo=reemplazo+location.pathname;

protocol="http://";
if (location.protocol=="https:") protocol="https://";

comparacion=protocol+reemplazo
if ((getCookie(COOKIE_NAME)!="") && (getCookie(COOKIE_NAME)!=comparacion) && !(index>0 && index<=9)){location.href=getCookie(COOKIE_NAME);}
}

if ((navigator.platform=='iPhone')||(navigator.platform=='BlackBerry')){document.location='http://www.santandermovil.cl'}
