var country = geoip_country_code();
switch (country)
{
case (country = "US"):
  phone="Telefono: (800) 989-8039";
break;
case (country = "UK"):
  phone="Telefono: (214) 810-2390";
break;
case (country = "CA"):
  phone="Telefono: (800) 989-8039";
break;
case (country = "CO"):
  phone="Teléfonos: Cel 321-643-3322 | Btá 091-3401808";
break;
case (country = "MX"):
  phone="Compras/pedidos: 55-24582308 | Distribucion: 55-41692240";
break;
case (country = "VE"):
  phone="Telefono en Venezuela: (+58)-(212)-992.7114";
break;
case (country = "BO"):
  phone="Telefono en Bolivia: 591-3-344972";
break;
case (country = "EC"):
  phone="Telefono en Ecuador, llame al: 59-393327702";
break;
default:
  phone="";
break;
}
