<!-- Request fuer alle Browser -->
var o = null;
try {
    // Mozilla, Opera, Safari sowie Internet Explorer (ab v7)
    o = new XMLHttpRequest();
} catch(e) {
    try {
        // MS Internet Explorer (ab v6)
        o  = new ActiveXObject("Microsoft.XMLHTTP");
    } catch(e) {
        try {
            // MS Internet Explorer (ab v5)
            o  = new ActiveXObject("Msxml2.XMLHTTP");
        } catch(e) {
            o  = null;
        }
    }
}


<!-- stayTimeUpdate -->
var Start = new Date();
var Startzeit = Start.getTime();

function onUnLoad(sid) {

		var Ende = new Date();
  		var Endzeit = Ende.getTime();
  		Aufenthalt = Math.floor((Endzeit - Startzeit) / 1000);

		if(o != null)
		{
			o.open("GET", "http://briefmarkenwugk.de/Script/functions_stayTimeUpdate.php?var_staytime="+Aufenthalt+"&var_sid="+sid, true);
			o.send(null);
		}
}
