﻿function searchNombre() {
    var text = document.getElementById('cphAdmin_V2Busqueda1_cbNombre').value;
    var surl = 'http://' + document.domain + '/' + text + '/';
    window.location = surl;
}

function searchCiudad() {
    var text = document.getElementById('cphAdmin_V2Busqueda1_cbCiudad').value;
    var surl = 'http://' + document.domain + '/travestis-' + text + '/';
    window.location = surl;
}

