<!--
//
// Copyright (c) Nuno Ferreira
//	Created: 20/12/2002
//	Last modified: 20/12/2002
//
// You're free to use this code, if you:
// - Don't change the source code
// - Maintain the copyright notice
// - Include on your site a notice of this fact
// - Link your site to mine: Nuno Ferreira (www.nuno.net)
// - Send me an e-mail, so I can link my site to your's
//

cookieson = "no";
machine = "";
a = -1;
a = document.cookie.indexOf("machine=");
if ( a >= 0 )
  {
  machine = document.cookie.substring(a+8);
  if ( machine.indexOf(";") >= 0 )
    {
    machine = machine.substring(0, machine.indexOf(";"));
    }
  }
document.write("<input type=\"hidden\" name=\"machine\" value=\""+machine+"\">");
//-->
