/********************************/
/* JavaScript Code Datei fia.js */
/* created 29-Jan-1998          */
/* last modified 03-Dec-1998    */
/********************************/



/*********************/
/* Globale Variablen */
/*********************/

var site_version = "0.08";
var email_adr ="Ruediger.Gemmrig@gemmrig.de";
var copyright = "HTML Design and Code &copy; 1996-98 R&uuml;diger Gemmrig";
var first_install = "Version 0.01 established 02-Feb-1996";
var site_location = "http://www.gemmrig.de/fia/";



/*******************************************************/
/* Zeigt Versions-Informationen fuer die HTML-Seite an */
/*******************************************************/

function Version_Information()
{
  document.write( "Version " , site_version );
}



/*****************************************************/
/* Zeigt Update-Informationen fuer die HTML-Seite an */
/*****************************************************/

function Last_Modified()
{
  document.write( " last updated " , document.lastModified , "<BR>" );
}



/**************************************************/
/* Zeigt Copyright im HTML-Code einer Webseite an */
/**************************************************/

function Copyright()
{
  document.write( copyright );
}



/******************************************************/
/* Zeigt EMail-Adresse im HTML-Code einer Webseite an */
/******************************************************/

function Email_Adress()
{
  document.write("E-Mail: <A HREF=\'mailto:" + email_adr + "\'>" + email_adr +"</A>");
}



/**************************************/
/* Zeigt Fusszeile fuer Hauptseite an */
/**************************************/

function Foot_Line_Mainpage()
{
  document.write( site_location , "<BR>" );
  document.write( "Version " , site_version );
  document.write( " / " , first_install , " / " );
  document.write( "last updated " , document.lastModified , "<BR>" );
  document.write( copyright , "<BR>" );
  document.write("E-Mail <A HREF=\'mailto:" + email_adr + "\'>" + email_adr +"</A>");
}



/************************************************/
/* Zeigt einheitliche Fusszeile fuer Website an */
/************************************************/

function Foot_Line()
{
  document.write( "Version " , site_version );
  document.write( "&nbsp;&nbsp; last updated " , document.lastModified , "&nbsp;&nbsp; " , "<BR>");
  document.write( copyright , "<BR>" );
  document.write("E-Mail <A HREF=\'mailto:" + email_adr + "\'>" + email_adr +"</A>");
}



/********************************************************/
/* Zeigt einheitliches Navigationsmenue fuer Website an */
/********************************************************/

function Navigation_Menue()
{
  document.write("<CENTER>");
  document.write("<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=5>");
  document.write("<TR BGCOLOR=\'#000000\'>");
  document.write("<TD COLSPAN=3 ALIGN=center VALIGN=middle BGCOLOR=\'#fbb917\'>");
  document.write("<FONT FACE=\'Arial\' SIZE=-1 COLOR=\'#2b3856\'><B><I>Go to:</I></B></FONT>");
  document.write("</TD>");
  document.write("</TR>");
  document.write("<TR BGCOLOR=\'#000000\'>");
  document.write("<TD ALIGN=center VALIGN=middle BGCOLOR=\'#eabe83\'>");
  document.write("<FONT FACE=\'Arial\' SIZE=-1 COLOR=\'#2b3856\'>");
  document.write("<B><A HREF=\'../hhf/hhf.html\' TARGET=\'_parent\'>H.-H. Frentzen</A><BR>Startpage</B>");
  document.write("</FONT>");
  document.write("</TD>");
  document.write("<TD ALIGN=center VALIGN=middle BGCOLOR=\'#eabe83\'>");
  document.write("<FONT FACE=\'Arial\' SIZE=-1 COLOR=\'#2b3856\'>");
  document.write("<B><A HREF=\'../sf1/sf1.html\' TARGET=\'_parent\'>Sauber F1 Team</A><BR>Startpage</B>");
  document.write("</FONT>");
  document.write("</TD>");
  document.write("<TD ALIGN=center VALIGN=middle BGCOLOR=\'#eabe83\'>");
  document.write("<FONT FACE=\'Arial\' SIZE=-1 COLOR=\'#2b3856\'>");
  document.write("<B><A HREF=\'../index.html\' TARGET=\'_parent\'>www.gemmrig.de</A><BR>Startpage</B>");
  document.write("</FONT>");
  document.write("</TD>");
  document.write("</TR>");
  document.write("</TABLE>");
  document.write("</CENTER>");
  document.write("<BR>");
}



