function MensagemCompra(){ var texto1 = "Para adquirir este producto por favor ponerse en contacto con Latinstock"; var texto2 = "ya sea por email"; var texto3 = "o comunicándose por los siguientes teléfonos"; var pais = "México"; var email = "soporte@latinstock.com.mx" ; var telefone = "(5255) 5525-0221" ; alert(texto1 + ' ' + pais + ' ' + texto2 + ' ' + email + ' ' + texto3 + ': ' + telefone); } function VerificaPodeComprarCd(_urlSalvar,_logado,_tipo,_id) { if(_logado == "False") { if(_tipo == '1') alert('Para comprar este CD, es necesario registrarse.'); else alert('Para agregar este CD a mesa de luz, es necesario registrarse.'); } else { //Se for compra e nao for brasil if(_tipo == '1' && _id != '1') MensagemCompra(); //Se for mesa luz e for chile ou venezuela //if(_tipo != '1' && ( _id == '28' || _id == '124') ) // MensagemCompra(); window.parent.search_mesa.location.href = _urlSalvar; } } function redirect(url, tam, menu) { document.getElementById("ur").value = url; document.getElementById("wi").value = tam; document.getElementById("menu").value = menu; document.frmRedirect.submit(); } function Enter(evt,acao) { if (document.all) { var tecla = event.keyCode; } else{ var tecla = evt.keyCode; } if (tecla == 13) { document.getElementById("ctl00_ach").value = acao; document.aspnetForm.submit(); } }