var ie=document.all
var ns6=document.getElementById && !document.all

function obtenerObjeto(nombre)
{
	if(ie)
		return document.all[nombre];
	if(ns6)
		return document.getElementById(nombre);
}

function imprimir(){
	window.print();
}
