// Added by Gerard to manage the display of albums with title
// album is in a "frame" object, the title is in a "title" object
function show(newtitle, url){
//alert(newtitle +", show:"+url)
//	document.getElementById("music").style.display="block"
	document.getElementById("frame").src=url
	document.getElementById("title").innerHTML=newtitle + "&nbsp;"
}
function xgoto(url){
//alert("goto:"+url)
	//document.getElementById("music").style.display="block"
	window.location = url
}
// deleted the malware?
//
