//
//  Escribe el pie
//

function pie()
{
/*
	var ns = (document.layers)? true:false;

	var documento;
	var capa;

	if(pie.arguments.length == 0)
	{
		documento = document;
	}
	else
	{
		capa  = (ns)? 'document.layers.' + pie.arguments[0] : pie.arguments[0];

		documento = eval(capa + '.document');
	}

	documento.writeln('<table cellpadding="0" cellspacing="0" width="600">');
	documento.writeln('  <tr>');
	documento.writeln('    <td><hr size="1" width=600>');
	documento.writeln('    </td>');
	documento.writeln('  </tr>');
	documento.writeln('  <tr>');
	documento.writeln('    <td align="right"><div id="PIE_FORMATO">Copyright Congreso de los Diputados 2002</div></td>');
	documento.writeln('  </tr>');
	documento.writeln('</table>');
*/
}

