
 function item( link, banner, title ) {

  document.write('<a href="' + link + '">'+ banner + title + '</a><br>');
  return true;}


 function menu( mode ) {

  var big_start = mode ? '<big>'  : '';
  var big_stop  = mode ? '</big>' : '';

  document.write(
	'<a href="dodaj.php" target="_self">' + big_start +
	'<b>Dodaj stronê</b>' + big_stop + '</a>');

  if ( !mode ) document.write (' | '+
	'<a href="edytuj.php" target="_self"><b>Edytuj stronê</b></a> | '+
	'<a href="regulamin.php" target="_self"><b>Regulamin</b></a>');

  document.write('<br>');

  return true;}


