// Vicente Ribes (http://www.pgc-2008.com). Octubre del 2007.
var destino = 'mensajes'

function verContenido(id){
	var url = "php/verContenido.php?id=" + escape(id) + '&otro=' + Math.random()
	destino = 'contenidoDB'
	document.getElementById(destino).innerHTML = '<p style="color:#F00">Cargando...</p>'
	xmlHttp = crearXmlHttp()
	xmlHttp.open("GET", url, true)
	xmlHttp.onreadystatechange = verContenidoHttp
	xmlHttp.send(null)
}

function verContenidoHttp(){
	if (xmlHttp.readyState == 4 || xmlHttp.readyState == "complete")
		if (xmlHttp.status == 200)
			document.getElementById(destino).innerHTML = xmlHttp.responseText
}