function imprimir(){
	if (window.frames['iframe'] == null){
     		//alert('No tenemos iframe');
		window.print();
    	}else{
		//alert('SÍ Tenemos iframe');
     		window.frames['iframe'].focus;
		parent.window.print();
		
	}
}
