function getServerURL(ruta, tipo, protocol) { var sReturn = ""; if (protocol == 1) { sReturn = "https://"; } else { sReturn = "http://"; } if (tipo == 0) { sReturn = sReturn + "servicios.repsol.com"; } else if (tipo == 1) { sReturn = sReturn + "www.repsol.com"; } else if (tipo == 2) { sReturn = sReturn + "www.guiacampsa.com"; } else if (tipo == 3) { sReturn = sReturn + "tienda.repsol.com"; } return sReturn + ruta; }