<!--
  var loc = "" + document.location + "";
  var pos = loc.indexOf("col=");
  var nloc;
  if ( pos > 0)
    {
      nloc = loc.substring(pos+4,loc.length);
      if (nloc == 1)
        {document.writeln ('<link href="/includes/style_white.css" rel="stylesheet">');}
      if (nloc == 2)
        {document.writeln ('<link href="/includes/style_black.css" rel="stylesheet">');}
      if (nloc == 3)
        {document.writeln ('<link href="/includes/style_olive.css" rel="stylesheet">');}
			if (nloc == 4)
        {document.writeln ('<link href="/includes/style_mustard.css" rel="stylesheet">');}
			if (nloc == 5)
        {document.writeln ('<link href="/includes/style_rust.css" rel="stylesheet">');}     
    }
   else{
      nloc = 1;
     document.writeln ('<link href="/includes/style_white.css" rel="stylesheet">');
     }
 function changecol(x){
  var xloc = "" + document.location + "";
  var xpos = xloc.indexOf("?");  
  var nxloc;
  if (xpos > 0)
    {
      nxloc = xloc.substring(0,xpos); 
    }
  else
    {
      nxloc = document.location;
    }
  document.location = nxloc + "?col=" + x;
 }
  //-->