<!-- Hide from old browsers

EnableStats = true;
EnableDebug = false;

// *****************************************************
// Enable/disable the statistics collection/processing.....
function writestatscode(str)
{
  if (EnableStats == true)
     {document.writeln(str);}
  else
     {document.writeln("");}
}

// *****************************************************
// Check whether the browser supports Java.....
JavaSupportOK = (
	((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) ||
	((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )));


// *****************************************************
function dostats()
{
stats_sw="unknown"; stats_sc="unknown";
stats_ref=""+escape(document.referrer);
stats_url=""+escape(document.location);

stats_sw=screen.width;
stats_nav=navigator.appName+" "+navigator.appVersion;
stats_sc=(stats_nav!="Netscape")?screen.colorDepth:screen.pixelDepth;

stats_call = "http://www.gite-couture.com/stats/stats.php?";
stats_call = stats_call + "&p1=" + stats_url + "&p2=" + stats_ref;
stats_call = stats_call + "&p3=" + stats_nav + "&p4=" + stats_sw;
stats_call = stats_call + "&p5=" + stats_sc;
stats_call = "<img src='"+stats_call+"' name=statsimg width=1 height=1 alt='' border=0>"

if (EnableStats == true) { writestatscode(stats_call); }
if (EnableDebug == true) { alert(stats_call); }

};

// *****************************************************
// Cookies
var x = new Date ( );
y = x.getUTCFullYear(); z = y.toString(); cookie_value = z.substr(2);
y = x.getUTCMonth() + 1; z = "00" + y.toString(); i = z.length; cookie_value += z.substr(i-2);
y = x.getUTCDate(); z = "00" + y.toString(); i = z.length; cookie_value += z.substr(i-2);
cookie_value += "_";
y = x.getUTCHours(); z = "00" + y.toString(); i = z.length; cookie_value += z.substr(i-2);
y = x.getUTCMinutes(); z = "00" + y.toString(); i = z.length; cookie_value += z.substr(i-2);
y = x.getUTCSeconds(); z = "00" + y.toString(); i = z.length; cookie_value += z.substr(i-2);
 
cookie_name = "firstvisit";
if(document.cookie) {
  index = document.cookie.indexOf(cookie_name);
  } else { index = -1; }
if (index == -1) {
    document.cookie=cookie_name + "=" + cookie_value + "; expires=Wednesday, 01-Aug-2040 08:00:00 GMT; path=/;";
  }
 
cookie_name = "lastvisit";
document.cookie=cookie_name + "=" + cookie_value + "; expires=Wednesday, 01-Aug-2040 08:00:00 GMT; path=/;";
 
cookie_name = "pageviews";
if(document.cookie) {
  index = document.cookie.indexOf(cookie_name);
  } else { index = -1; }
if (index == -1) {
    document.cookie=cookie_name+"=1; expires=Wednesday, 01-Aug-2040 08:00:00 GMT; path=/;";
  } else {
    countbegin = (document.cookie.indexOf("=", index) + 1);
    countend = document.cookie.indexOf(";", index);
    if (countend == -1) {
      countend = document.cookie.length;
    }
    count = eval(document.cookie.substring(countbegin, countend)) + 1;
    document.cookie=cookie_name+"="+count+"; expires=Wednesday, 01-Aug-2040 08:00:00 GMT; path=/;";
  }


// Unhide -->
