
function StartStat(ProjID,strRef)
{

// Prove locale
//var file='http://mceccarelli/SPOT4Web_Local/ENV_Stats/ASPPROC/count.asp';

var file='http://www.spot4web.com/ENV_Stats/ASPPROC/count.asp';

var d=new Date(); 
var s=d.getSeconds(); 
var m=d.getMinutes();
var x=s*m;	
var ProjectID = ProjID
	
	if (strRef == "")
		{f='' + escape(document.referrer);}
	else 
		{f='' + strRef;}
	
	if (navigator.appName=='Netscape'){b='NS';} 
	if (navigator.appName=='Microsoft Internet Explorer'){b='MSIE';} 
	if (navigator.appVersion.indexOf('MSIE 3')>0) {b='MSIE';}
	
	u='' + escape(document.URL); 
	
	w=screen.width; 
	h=screen.height; 
	
	v=navigator.appName; 
	
	fs = window.screen.fontSmoothingEnabled;
	
	if (v != 'Netscape') {c=screen.colorDepth;}
	else {c=screen.pixelDepth;}
	
	j=navigator.javaEnabled();

	info='w=' + w + '&h=' + h + '&c=' + c + '&r=' + f + '&u='+ u + '&fs=' + fs + '&b=' + b + '&x=' + x + '&Pj=' + ProjectID;
	
	//document.write("<img src=ASPPROC/count.asp?" + info + " width=0 height=0 border=0>");	
	
	//document.write('<img src="' + file + '?'+info+ '" width=0 height=0 border=0>');

	isIE4 = (navigator.appVersion.charAt(0)>=4 && (navigator.appVersion).indexOf("MSIE") != -1);    
	if (isIE4 == true )
	{
	document.write('<img src="' + file + '?'+info+ '" width=0 height=0 border=0>');
	}
	else
	{
	document.write('<layer visibility="hide">');
	document.write('<img src="' + file + '?'+info+ '" width=0 height=0 border=0>');
	document.write('</layer>');
	}	

}
