var plstart = new Date();
window.onload=function() {
var plend = new Date();
var plload = plend.getTime() - plstart.getTime();

// determine the thresholds

    if(plload<4000) // less than 2 seconds is very fast
		lc = "0 to 4 seconds";
	else if (plload<8000) // 8 seconds = fast
		lc = "4 to 8 seconds";
	else
		lc="8 and higher"; // wow more than 8 minute

var fn = document.location.pathname;
if( document.location.search)
fn += document.location.search;

try
{
pageTracker._trackEvent("Page Load",lc +
" Load", fn, Math.round(plload/1000));
}
catch(err)
{

}
}

