<!--

//  Script :
// Definisce dove si trova il file per il conteggio
var fileasg='/myasg/count.asp';
//var fileasg='http://localhost/mepiemont/myasg/count.asp';//solo per locale
var file='/statcount/count.asp';
var d=new Date(); 
var s=d.getSeconds(); 
var m=d.getMinutes();
var x=s*m;

// Ricava il Referer = Pagina di Provenienza
f='' + escape(document.referrer);

// Ricava la pagina attuale nel sito
u='' + escape(document.URL); 

// Ricava la risoluzione video
var w=screen.width; 
var h=screen.height; 

// Ricava il nome del browser per valutare la profondità di colore
v=navigator.appName; 
if (v != 'Netscape') {c=screen.colorDepth;}
else {c=screen.pixelDepth;}

// Ricava Anti-Aliasing Fonts
var fs = window.screen.fontSmoothingEnabled;
if (navigator.appName=='Netscape'){b='NS';} 
if (navigator.appName=='Microsoft Internet Explorer'){b='MSIE';} 
if (navigator.appVersion.indexOf('MSIE 3')>0) {b='MSIE';}

// Ricava il supporto per Java abilitato
j=navigator.javaEnabled();

// Passa la stringa con i valori
infoasg='w=' + w + '&h=' + h + '&c=' + c + '&r=' + f + '&u='+ u + '&fs=' + fs + '&j=' + j;
//info='w=' + w + '&h=' + h + '&c=' + c + '&r=' + f + '&u='+ u + '&fs=' + fs + '&b=' + b + '&x=' + x;

// Richiama l'img e passa i valori
document.open();
document.write('<img src=' + fileasg + '?'+infoasg+ ' border=0>');
//document.write('<img src=' + file + '?'+info+ ' border=0>');
document.close();
//  End.

//-->