function MensagemCompra(){ var texto1 = "undefined:mensagem_compra_1"; var texto2 = "undefined:mensagem_compra_2"; var texto3 = "undefined:mensagem_compra_3"; var pais = "Brasil"; var email = "latinstock@latinstock.com.br" ; var telefone = "Tel.: (5511) 3107-3456 (São Paulo) / 0800-122666 (demais cidades)" ; alert(texto1 + ' ' + pais + ' ' + texto2 + ' ' + email + ' ' + texto3 + ': ' + telefone); } function VerificaPodeComprarCd(_urlSalvar,_logado,_tipo,_id) { if(_logado == "False") { if(_tipo == '1') alert('Para comprar este cd, é preciso estar logado'); else alert('Para salvar este cd a mesa de luz, é preciso estar logado.'); } 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(); } }