// Pra abrir a pop-up com as letras das músicas
function letra(URL) {

   var width = 400;
   var height = 500;

   var left = 30;
   var top = 30;

   window.open(URL,'Letras', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}

// Pra abrir a pop-up com o mural de recado
function depo(URL) {

   var width = 520;
   var height = 500;

   var left = 30;
   var top = 30;

   window.open(URL,'Letras', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}


// Pra checar o envio do formulário de vendas 
function validate(){
if (document.pedidos.form_nome.value=="") {
alert("Preencha o campo NOME.")
return false
}
if (document.pedidos.form_rua.value=="") {
alert("Preencha o campo RUA/AV.")
return false
}
if (document.pedidos.form_numero.value=="") {
alert("Preencha o campo NÚMERO.")
return false
}
if (document.pedidos.form_bairro.value=="") {
alert("Preencha o campo BAIRRO.")
return false
}
if (document.pedidos.form_cidade.value=="") {
alert("Preencha o campo CIDADE.")
return false
}
if (document.pedidos.form_uf.value=="") {
alert("Preencha o campo UF.")
return false
}
if (document.pedidos.form_cep.value=="") {
alert("Preencha o campo CEP.")
return false
}
if (document.pedidos.form_email.value=="") {
alert("Preencha o campo EMAIL.")
return false
}
if (document.pedidos.form_telefone.value=="") {
alert("Preencha o campo TELEFONE.")
return false
}
if (document.pedidos.v_pedido.value=="") {
alert("A sua lista de pedidos está vazia.")
return false
}
return true
}