// Abrir galeria de fotos Popup

function abrir1(URL) {

   var width = 297;
   var height = 440;

   var left = 99;
   var top = 99;

   window.open(URL,'info', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}

function abrir2(URL) {

   var width = 407;
   var height = 330;

   var left = 99;
   var top = 99;

   window.open(URL,'info', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}

function abrir3(URL) {

   var width = 630;
   var height = 500;

   var left = 99;
   var top = 99;

   window.open(URL,'info', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}

// Abrir descrição músicas cd Popup

function abrircd(URL) {

   var width = 500;
   var height = 400;

   var left = 99;
   var top = 99;

   window.open(URL,'info', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}

// FORMULÁRIOS - Josué, O Sax Romântico

function enviarform(){

if (document.contato.nome.value=="")
{
alert( "Preencha o campo 'Nome'" );
document.contato.nome.focus();
return false;
}

if( document.contato.email.value=="" || document.contato.email.value.indexOf('@')==-1 || document.contato.email.value.indexOf('.')==-1 )
{
alert( "Preencha o campo 'E-mail' corretamente" );
document.contato.email.focus();
return false;
} 

return true;
}

// Multimidia - Josué, O Sax Romântico

function popUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWin', strOptions);
}