<!--
var bnegrito = false;
var bitalico = false;
var bzoom = false;
function template(n)
{
document.getElementById('spletra').style.paddingLeft = "5px"
document.getElementById('spletra').style.color='#000000'; 

if (n == 1) 
{
document.getElementById('spletra').style.background='#F4F4F4'; 
}
if (n == 2) 
{
document.getElementById('spletra').style.background='#FFFFFF'; 
}
if (n == 3) 
{
//document.all.spletra.bgColor='#000000'
document.getElementById('spletra').style.background='#000000'; 
document.getElementById('spletra').style.color='#FFFFFF'; 


}
if (n == 4) 
{
//document.all.spletra.bgColor='#000000'
document.getElementById('spletra').style.background='background: url(images/imgBackground2.gif) repeat-y'; 
document.getElementById('spletra').style.paddingLeft = "45px"
}

}
function negrito()
{

if (!bnegrito)
{
document.getElementById('spletra').style.fontWeight = "bold"
}
else
{
document.getElementById('spletra').style.fontWeight = "normal"
}
bnegrito = !bnegrito
}
function zoomin()
{
if (!bzoom)
{
document.getElementById('spletra').style.fontSize = "10pt"
alturaLinha = 20;
}
else
{
document.getElementById('spletra').style.fontSize = ""
alturaLinha = 20;
}

bzoom = !bzoom
}

function italico()
{

if (!bitalico)
{
document.getElementById('spletra').style.fontStyle = "italic"
}
else
{
document.getElementById('spletra').style.fontStyle = "normal"
}
bitalico = !bitalico
}
function sugestao(codigo, id, id2)
{
if (codigo == 'ANO_ALBUM')
{
tamanho = 400
altura = 270
window.open ("http://www.webletras.com.br/admusuario.asp?cod=" + codigo + "&id=" + id, 'admusuario', 'width=' + tamanho + ',height=' + altura);
}
if (codigo == 'FOTO_CAPA_ALBUM')
{
tamanho = 500
altura = 600
window.open ('http://www.webletras.com.br/admusuario.asp?cod=' + codigo + '&id=' + id, 'admusuario', 'width=' + tamanho + ',height=' + altura + ',scrollbars=yes');
}
if (codigo == 'GENERO_ARTISTA')
{
tamanho = 400
altura = 270
window.open ('http://www.webletras.com.br/admusuario.asp?cod=' + codigo + '&id=' + id, 'admusuario', 'width=' + tamanho + ',height=' + altura);
}


}
function startPlay()
{
cont = 9;
document.getElementById("start").style.display = 'block'
d = new Date() 
//clearInterval(ourInterval);
iniciaContagem()


}
var cont;
var alturaLinha = 20;
var n;
var reproduz = false;
function iniciaContagem()
{			
cont--
document.getElementById("contagem").innerHTML = cont + ' segundo(s)'

if (cont > 0)
{
n = 0;
reproduz = false;
setTimeout('iniciaContagem()', 1000)
}
else
{

document.getElementById("start").style.display = 'none'
medida = tempoLinha[0].split('-')
tempo = medida[0]
linha = medida[1]
n = 0
reproduz = true;
setTimeout('highlight(linha)', parseInt(tempo)) 
}
}
-->
