<?php
  $par = $_GET['mode'];

  echo "";
  //echo $par;

  include ("content_header.html");
  include ("content_sep_first.html");

  bblock($par);  

  switch ($par) {
	case "about" : include ("about.html");		break;
	case "proj"  : include ("projects.html");	break;
	case "cons"  : include("consulting.html");	break;
	case "law"   : include("law.html");			break;
	case "artc"  : include("articles.html");	break;
	case "serv"  : include("service.html");		break;
	default      : exit;
  }

  eblock();

//  include ("content_sep.html");
  include ("content_sep_last.html");
  include ("content_bottom.html");

// ----------------------------------------------------------------------------
  function bblock($aname) {
	echo "<A name='".$aname."_name'>";

    echo "<table border='0' width='100%'>";
	echo "<tr>";
	echo "<td width='10%'>&nbsp;</td>";
    echo "<td width='*'>";

	echo "<FONT COLOR='#FFFFFF'>";

    return "";
  }

// ----------------------------------------------------------------------------
  function eblock() {   
    echo "</FONT>";

	echo "</td>";
	echo "<td width='10%'>&nbsp;</td>";
    echo "</tr>";
	echo "</table>";

	echo "</A>";

    return "";
  }
// ----------------------------------------------------------------------------
?>
