function cambiarIcono(nombre,tipo)
{
	document.images[nombre].src=tipo;
}
function cambiarIconoDiv(nombre,tipo,forma)
{
	document.getElementById(nombre).style.background='url('+tipo+') no-repeat '+forma;
}