const urlParams = new URLSearchParams(window.location.search);
const productValue = 'productClick/' + urlParams.get('Product');
// Si hay un valor para 'Product', buscar enlaces que contengan ese valor y '99700', y hacer clic en ellos
if (productValue) {
$(`a[href*="${productValue}"]`).click();
}