function _show(imageurl,id){
	d 	= document.getElementById(id);
	nd	= document.getElementById('infobox');
	if(nd.hasChildNodes()){
		nd.removeChild(nd.firstChild);
	}
	img	= document.createElement('IMG');
	img.setAttribute('src',imageurl);
	nd.appendChild(img);
	nd.style.display 	= 'block';
	
}

function _hide(){
	document.getElementById('infobox').style.display = 'none';
}
