function showMessage(id, wid)
{
	var ancho, xPos;

	ancho = parseInt(document.body.scrollWidth);
 	xPos = parseInt(((ancho - wid) / 2) - (wid / 2));

 	document.getElementById(id).style.left = xPos;
	document.getElementById(id).style.visibility = "visible";
}
