
// (c) Matthias Schmidt


// Get the User Agent Name
var height = screen.height;
var width = screen.width;
var depth = screen.colorDepth;
var platform = navigator.platform;


// Create the image url and write it into the page. 



document.write("<img src=\"gatherer/getinfo.php?"); 
document.write("&height="+height);
document.write("&width="+width);
document.write("&depth="+depth);
document.write("&platform="+platform);
document.write("&javascript=ja");
document.write("\" alt=\"\" width=\"1\" height=\"1\" >");

