function ir(pag,capa) {
	document.getElementById('escritorio').src = pag;
	//if(document.getElementById(capa) != null) document.getElementById(capa).style.display = 'none';
}

function mostrarHome()
{
 document.getElementById('escritorio').src = 'principal.html';
}

function ajustarEscritorio() {
	vEscritorio = document.getElementById('escritorio');
	wY = document.documentElement.clientHeight;
	wX = document.documentElement.clientWidth;
	posY = vEscritorio.offsetTop;
	vEscritorio.style.height = wY - posY - 13 + 'px';
}

window.onload = ajustarEscritorio;
window.onresize = ajustarEscritorio;
