|
<?php
print '
<html>
<head>
<title>'.$sys->get_doc_title().' | '.APP_NAME.' | '.$header_title.'</title>
<link type = "text/css" rel = "stylesheet" href = "style.css" />
<link type="text/css" rel="stylesheet" href="highlighter/css/SyntaxHighlighter.css"></link>
<script type = "text/javascript" src="highlighter/js/shCore.js"></script>
<script type = "text/javascript" src="highlighter/js/shBrushCSharp.js"></script>
<script type = "text/javascript" src="highlighter/js/shBrushPython.js"></script>
<script type = "text/javascript" src="highlighter/js/shBrushPhp.js"></script>
<script type = "text/javascript" src="highlighter/js/shBrushCpp.js"></script>
<script type = "text/javascript" src="highlighter/js/shBrushXml.js"></script>
<script type = "text/javascript" src="highlighter/js/shBrushCss.js"></script>
<script type = "text/javascript" src="highlighter/js/shBrushDelphi.js"></script>
<script type = "text/javascript" src="highlighter/js/shBrushJava.js"></script>
<script type = "text/javascript" src="highlighter/js/shBrushRuby.js"></script>
<script type = "text/javascript" src="highlighter/js/shBrushSql.js"></script>
<script type = "text/javascript" src="highlighter/js/shBrushVb.js"></script>
<script type = "text/javascript">window.onload = function () {
dp.SyntaxHighlighter.ClipboardSwf = \'highlighter/js/clipboard.swf\';
dp.SyntaxHighlighter.HighlightAll(\'code\');
}
</script>
<script type = "text/javascript" src = "jslib.js"></script>
<script type="text/javascript" src="bbeditor/ed.js"></script>
<link type = "text/css" rel = "stylesheet" href = "includes/rsurl_api/rsurl_style.css" />
<script type = "text/javascript" src = "includes/rsurl_api/rsurl_js.js"></script>
</head>
<body>
<table class = "header" border = "0" cellspacing = "0" cellpadding = "0" width = "100%">
<tr>
<td align = "left" class = "doctitle"><a href = "'.APP_DIR.'">'.$sys->get_doc_title().'</a></td>
<td align = "right">'.nav().'</td>
</tr>
</table><br />';//print_r($_SESSION);
?>
|