// Javascript for the Pdoc web site

// --------------------------------------------

var mainHeader = '<div class="release">Pdoc release: 1.1</div>Rapha&euml;l Leplae &copy; 2000-2006';
var baseUrl = '.';

function localToolbar (header) {

    // Define local toolbar
    document.writeln('<table class="localToolbar" width="100%"><tr>');
    document.writeln('<td class="tbEntry"><a href="news.html">News</a></td>');
    document.writeln('<td class="tbEntry"><a href="about.html">About</a></td>');
    document.writeln('<td class="tbEntry"><a href="versions.html">Versions</a></td>');
    document.writeln('<td class="tbEntry"><a href="documentation.html">Documentation</a></td>');
    document.writeln('<td class="tbEntry"><a href="download.html">Download</a></td>');
    document.writeln('<td class="tbEntry"><a href="scripts.html">Scripts</a></td>');
    document.writeln('<td class="tbEntry"><a href="licence.html">Licence</a></td>');
    document.writeln('<td class="tbEntry"><a href="http://sourceforge.net/projects/pdoc"><img src="http://sourceforge.net/sflogo.php?group_id=42096"></a></td>');
    document.writeln('</tr></table>');
}

// --------------------------------------------

function addHeader (header) {
	var imgUrl = baseUrl + "/Images/titleAnim.gif";
	
	document.writeln('<LINK REL="stylesheet" TYPE="text/css" HREF="' + baseUrl + '/pdoc.css">');
	document.writeln('<table border="0" cellspacing="2" cellpadding="2">');
	document.writeln('<tr><td align="left">');
	
	document.writeln('<a href="' + baseUrl + '/index.html"><img src="' + imgUrl + '" border=0 alt="Pdoc"></a>');
	document.writeln('</td>');
	document.writeln('<td align="left" class="headTitle">');
	document.writeln(mainHeader + '<br>');
	document.writeln(header);
	document.writeln('</td>');
	document.writeln('<td>');
	
//	document.writeln('<div style="height: 100%; text-align: left;">');
//	addMainToolbar('Pdoc');
//	document.writeln('</div></td>');
	// Just empty cell for the moment...
	document.writeln('&nbsp;');
	document.writeln('</td>');
	document.writeln('</tr>');
	document.writeln('</table>');

	localToolbar(header);
}
