
function imprime(){
   window.parent.document.frames.datos.focus();
   window.parent.document.frames.datos.print();
}

function imprimir(){
	 window.focus();
	 window.print();  
}

function onrowover(row)
{
   row.style.backgroundColor="#FFE5BB";
   row.style.cursor="hand";
}
 
function onrowout(row)
{
     row.style.backgroundColor="#ffffff";
     row.style.cursor="";
     
}

function ventana(archivo,ancho,alto){
		window.open(archivo,"Napisa","toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=no, resizable=0, copyhistory=0, width=" + ancho + ", height=" + alto);
	}

function paraimpresora(archivo,ancho,alto){
		window.open(archivo,"Napisa","toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=yes, resizable=0, copyhistory=0, width=" + ancho + ", height=" + alto);
	}
