function trace(evt,aParams){
	aParams['evt']=evt;
	new Ajax.Request('modules/trace/index.php', {method:'post', parameters: aParams});	
	
}



var detect = navigator.userAgent.toLowerCase();
var OS,browser,version,total,thestring;
	
function checkIt(string)
{
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}


traceOnLoad=function(){
	
	
	trace("resolution",{param1:screen.width,param2:screen.height});

}
addLoadEvent(traceOnLoad);




