// JavaScript Document
	function imprimir(elemento, portal)
	{
		var ficha = document.getElementById(elemento);
		var ventimp = window.open('index.php');
		ventimp.document.write("<html><head></head><body><center><strong>" + portal + "</strong><br><br><br></center>" + ficha.innerHTML + "<br><br><br></body></html>");
	
		ventimp.document.close();
		ventimp.print();
		ventimp.close();
	}
