Files
tarisan_gitea/html/imp/frame_imprimir.html
T
2025-06-09 13:45:30 +02:00

27 lines
659 B
HTML

<html>
<head>
<title>Imprimir</title>
<SCRIPT LANGUAGE="JavaScript">
<!--
var params;
if ( document.location.search != "" )
{
params = document.location.search.substring( 1, document.location.search.length );
}
document.write("<frameset rows='0,*' frameborder=0 marginwidth=0 marginheight=0 border=0 framespacing=0>");
document.write(" <frame name='vacio' src='blanco.html' scrolling='NO' marginheight=0 marginwidth=0 noresize>");
document.write(" <frame name='contenidoPrincipal' src='pag_imprimiendo.html?"+params+"' scrolling=no marginheight=0 marginwidth=0 noresize>");
document.write("</frameset>");
//-->
</SCRIPT>
</head>
<body>
</body>
</html>