//
function toonAlbumDetails(recDestTitle,recDestCountry)
{
	var strOutput =	""
	var strFontColor = "#868451"
	
	strOutput = "<strong style=\"color:#333333; font-size:12px;\">" + recDestTitle + "</strong><div style=\"font-size:11px; color:" + strFontColor + ";\">" + recDestCountry + "</div>"
	
	var menudef_ref = document.getElementById("albuminfo")
	tempX = tempX + 10
	tempY = tempY + 15
	menudef_ref.style.left = tempX
	menudef_ref.style.top = tempY
	menudef_ref.style.visibility = "visible"
	menudef_ref.innerHTML = strOutput
}
//
function hideAlbumDIV(){
	var menudef_ref = document.getElementById("albuminfo")
	menudef_ref.style.visibility = "hidden"
}
