<!--
var thi$ = window.location.href
var qy = thi$.indexOf("?",0)

thi$ = thi$.substring(qy)

// document.write(qy + " : " + thi$)
// qy is -1 if ?not found, and therefore prints the whole url

var ColDepth = screen.colorDepth ;
var ScrSize = screen.availWidth+" x "+screen.availHeight ;

if (document.referrer) {
var CameFrom = document.referrer ;
}
else
{
var CameFrom = "No Previous Referrer";
}

var stats = 'FullUrl = ' + thi$ + ' : Colour Depth = ' +  ColDepth + ' : Screen Size = ' + ScrSize +' : Referring URL was = ' + CameFrom
// document.write (stats);
document.writeln("<iframe width=2 height=2 name=\"elsewhere\"></iframe>");

document.writeln('<FORM name = "clammer" ACTION="process.php"  METHOD="Post" TARGET="elsewhere">');
document.writeln('<input type="HIDDEN" name="AntiF" value="CreateYourOwnPC">');
document.writeln('<INPUT TYPE = "HIDDEN" NAME="GoGetStats" VALUE=' + '"' + stats + '">');
document.writeln('</FORM>');
document.clammer.submit();



//-->




