sec0border = 0;
sec1border = 0;
sec2border = 0;
if( pagesec == 0 ) sec0border = 1;
else if( pagesec == 1 ) sec1border = 1;
else if( pagesec == 2 ) sec2border = 1;
document.write('<TABLE BORDER="0" WIDTH="100%" BACKGROUND="navbg.jpg" CELLPADDING="5"><TR><TD><A HREF="index.html"><IMG SRC="logo.jpg" BORDER="0" /></A></TD><TD><TABLE BORDER="' + sec0border + '" CELLSPACING="0" CELLPADDING="5" BORDERCOLOR="#555555"><TR><TD><A HREF="compgames.html"><IMG SRC="3ddesign.jpg" BORDER="0" /></A></TD></TR></TABLE></TD><TD><TABLE BORDER="' + sec1border + '" CELLSPACING="0" CELLPADDING="5" BORDERCOLOR="#555555"><TR><TD><A HREF="javascript:alert(\'Sorry, but this section is not yet accessible.\');"><IMG SRC="webdesign.jpg" BORDER="0" /></A></TD></TR></TABLE></TD><TD><TABLE BORDER="' + sec2border + '" CELLSPACING="0" CELLPADDING="5" BORDERCOLOR="#555555"><TR><TD><A HREF="javascript:alert(\'Sorry, but this section is not yet accessible.\');"><IMG SRC="printdesign.jpg" BORDER="0" /></A></TD></TR></TABLE></TD></TR></TABLE>');

values = "0123456789ABCDEF";
altValues = "FEDCBA9876543210";
function Colorize(thestring,modeAlt){
dummy = '';
for( y=0; y<thestring.length; y=y+1 ){
  curColor = values.charAt(Math.round((values.length/thestring.length)*y));
  if( modeAlt == 1 ) curInv = altValues.charAt(Math.round((altValues.length/thestring.length)*y));
  else{
    curInv = "F";
    if( y < values.length ) curColor = values.charAt(y);
    else curColor = values.charAt(values.length-1);
    }
  curcolor = curInv + curInv + curColor + curColor + curColor + curColor;
  dummy += '<FONT COLOR="#' + curcolor + '">' + thestring.charAt(y) + '</FONT>';
  }
return dummy;
}