ctasapagar/w_auxiliar.html
2021-10-01 20:28:38 +01:00

36 lines
1.4 KiB
HTML

<html>
<!-- application: Cuentas a Pagar -->
<!-- version: 1.0 -->
<!-- company name: AdmiSys -->
<!-- filename: help.html -->
<!-- description: frameset for online help facility -->
<SCRIPT SRC="global.js" >
</SCRIPT>
<SCRIPT SRC="ctasapagar.js">
</SCRIPT>
<head>
<SERVER>writeln('<title>Ventana Auxiliar de '+request.titulo+'</title>');</SERVER>
</head>
<script language="JavaScript">
topic = location.hash
</script>
<SERVER>
var baseHtml="FrameType="+request.FrameType+"&ViewFkey="+request.ViewFkey+"&uid="+request.uid
if (!request.obj)
redirect("go_back.html")
if (request.clave && request.valor ) {
// redirect('o_'+ request.obj +'.html?waux=2&'+request.clave+'='+request.valor);
writeln("<frameset rows='52,*'>");
writeln("<frame src='w_auxnavbar.html?waux=2&obj="+request.obj+"&titulo="+request.titulo+"' scrolling=no marginwidth=0 marginheight=0 name='buttons'>");0
writeln('<frame src="o_'+ request.obj +'.html?waux=2&'+request.clave+'='+request.valor +'&'+baseHtml+'">');
}
else {
writeln("<frameset rows='52,*'>");
writeln("<frame src='w_auxnavbar.html?waux=1&obj="+request.obj+"&titulo="+request.titulo+"' scrolling=no marginwidth=0 marginheight=0 name='buttons'>");
writeln('<frame src="g_'+ request.obj +'.html?waux=1&'+baseHtml+'&name="'+ request.obj +'">');
}
</SERVER>
</frameset>
</html>