

function _mouseDownButton(ButtonID)
{
	if (_ButtonPreview == ButtonID)
	{
		if (_ButtonState == 0)
			document.getElementById(ButtonID).src = imagePath + "";
		else
			if (_ButtonState == 2)
				document.getElementById(ButtonID).src = imagePath + "";
			else
				if (_ButtonState == 3)
					document.getElementById(ButtonID).src = imagePath + "";
	}
	else
	{
		document.getElementById(ButtonID).src = imagePath + "";
	}
}



function _mouseOutButton(ButtonID)
{
	if (_ButtonPreview == ButtonID)
	{
		if (_ButtonState == 0)
			document.getElementById(ButtonID).src = imagePath + "";
			if (_ButtonState == 2)
				document.getElementById(ButtonID).src = imagePath + "";
			else
				if (_ButtonState == 3)
					document.getElementById(ButtonID).src = imagePath + "";
	}
	else
			document.getElementById(ButtonID).src = imagePath + "";
}




function ghost (fotoPath, local, subNome, praiaLabel, artistaNome, compositorLabel, compositorNome, albumLabel, albumNome, gravadoraLabel, gravadoraNome, outrosLabel, infoNome)
{
    var html = "<div class=\'tiphold margem\'><div class=\'w100p fundo\'>";
    html = html + "<div class=\'c1tt\'>" + local;
    if (subNome != "")
    {
        html = html + "<br />" + subNome;
    }
    html += "</div>";
    html += "<table class=\'\'>";
    html += "<tr><td class=\'textod \'><img src=\'" + fotoPath + "\' ><b></b></td>";
    html += "<td class=\'textod\'>" + artistaNome + "</td></tr>";
    
    if (compositorLabel != "")
    {
        html += "<tr><td class=\'textod w75\'><b>" + compositorLabel + ":</b></td>";
        html += "<td class=\'textod\'>" + compositorNome + "</td></tr>";
    }
    
    html += "<tr><td class=\'textod \'><b>" + albumLabel + ":</b></td>";
    html += "<td class=\'textod\'>" + albumNome + "</td></tr>";


    ddrivetip (html); 
    
}


