var Mozilla=0.0;
var MSIE=0.0;
var Netscape=0.0;
{
  var i;
  i = navigator.userAgent.indexOf('Mozilla');
  if (i > -1) Mozilla = parseFloat(navigator.userAgent.substr(i+8,4));
  i = navigator.userAgent.indexOf('MSIE');
  if (i > -1) MSIE = parseFloat(navigator.userAgent.substr(i+5,4));
  i = navigator.userAgent.indexOf('Netscape');
  if (i > -1) Netscape = parseFloat(navigator.userAgent.substr(i+9,4));
}

function CanDHTML()
{
  return ((Mozilla>=5.0) || (MSIE>=5.0) || (Netscape>=6.0));
}

function Hover(ParmThis, HoverType)
{
  switch (HoverType)
  {
    case 0:
      ParmThis.style.backgroundColor='';
      ParmThis.style.color='';
      ParmThis.style.cursor='';
      break;
    case 1:
      ParmThis.style.backgroundColor='#000080';
      ParmThis.style.color='#E6E6E6';
      ParmThis.style.cursor='hand';
      break;
    case 3:
      ParmThis.style.backgroundColor='#000080';
      ParmThis.style.color='#E6E6E6';
      ParmThis.style.cursor='hand';
      break;
  }
}

function OpenPopUp(Url, Name, h, w)
{
  if (h < 1) h = 120;
  if (w < 1) w = 280;
  WindowNew = window.open(Url, Name, 'height='+h+',width='+w+',top='+Math.floor((screen.height-h)/2)+',left='+Math.floor((screen.width-w)/2)+',toolbar=no,location=no,scrollbars=no,resizable=no');
}

function Header()
{
  if (CanDHTML())
  {
    document.write('<DIV CLASS="HideForScreen">');
    document.write('  <TABLE WIDTH="100%"><TR>');
    document.write('    <TD WIDTH="100%" ALIGN="RIGHT">');
    document.write('      <IMG SRC="/Rafting/Sys/MenuLogo.gif" ALT="Logo" BORDER="0" STYLE="float: left;">');
    document.write('      <FONT STYLE="Sans-Serif" COLOR="NAVY" SIZE="1">');
    document.write('      <I><B>Rafting Fed. v.z.w.</B></I><BR>');
    document.write('      <I><B>Rafting & Outdoor BVBA</B></I><BR>');
    document.write('      <HR COLOR="NAVY" SIZE="1">');
    document.write('      <I></I><BR>');
    document.write('      </FONT>');
    document.write('    </TD>');
    document.write('  </TR>');
    document.write('  <TR>');
    document.write('    <TD>');
    document.write('      <BR>');
    document.write('    </TD>');
    document.write('  </TR>');
    document.write('  </TABLE>');
    document.write('</DIV>');
  }
}

function Footer()
{
  if (CanDHTML())
  {
    document.write('<DIV CLASS="HideForScreen">');
    document.write('  <TABLE WIDTH="100%" STYLE="float: bottom;">');
    document.write('  <TR>');
    document.write('    <TD>');
    document.write('      <BR>');
    document.write('      <HR COLOR="NAVY" SIZE="1">');
    document.write('    </TD>');
    document.write('  </TR>');
    document.write('  <TR>');
    document.write('    <TD ALIGN="CENTER">');
    document.write('      <FONT STYLE="Sans-Serif" COLOR="NAVY" SIZE="1">');
    document.write('      <I>Rafting Federatie v.z.w. / Rafting & Outdoor BVBA</I><BR>');
    document.write('      <I>Leiekaai 330, 9000 Gent - Tel - Fax: 09/225.37.69</I><BR>');
    document.write('      <I>web-site: http://www.rafting.be - e-mail: rafting@tijd.com</I><BR>');
    document.write('      </FONT>');
    document.write('    </TD>');
    document.write('  </TR>');
    document.write('  </TABLE>');
    document.write('</DIV>');
  }
}

document.write('<LINK REL="StyleSheet" TYPE="text/css" HREF="../Include/Version' + String(CanDHTML() ? 1 : 0) + '.css">');

