// 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("frame").src=url
	document.getElementById("title").innerHTML=newtitle + "&nbsp;"
}
function xgoto(url){
//alert("goto:"+url)
	window.location = url
}

//<!--cleaned-->

