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 = "Ecuador"; var email = "frank@latinstockecuador.com" ; var telefone = "(593 2) 2220 572 • 2552 582 • 2220 594 Fax: (593 2) 2220 594" ; 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 e os 4 sites do USA if(_tipo == '1' && _id != '1' && _id != '122' && _id != '128' && _id != '129' && _id != '130'){ 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(); } }