21 lines
570 B
HTML
21 lines
570 B
HTML
<html>
|
|
|
|
<!-- application: Cuentas a Pagar -->
|
|
<!-- version: 1.0 -->
|
|
<!-- company name: AdmiSys -->
|
|
<!-- filename: help.html -->
|
|
<!-- description: frameset for online help facility -->
|
|
|
|
<head>
|
|
<title>Ayuda en Línea</title>
|
|
</head>
|
|
|
|
<script language="JavaScript">
|
|
topic = location.hash
|
|
document.write("<frameset rows='52,*'>")
|
|
document.write("<frame src='help_navbar.html' scrolling=no marginwidth=0 marginheight=0 name='buttons'>")
|
|
document.write("<frame src= helptopics.html" + topic + " name='topic'>")
|
|
</script>
|
|
</frameset>
|
|
</html>
|