function addLoadEvent(func) { 
	var oldonload = window.onload; 
	if (typeof window.onload != 'function') { window.onload = func; } else 
		{ window.onload = function() { oldonload(); func(); }
	}
}

function clickCount(id){
	var ajaxRequest;  // The variable that makes Ajax possible!

	try{
		// Opera 8.0+, Firefox, Safari
		ajaxRequest = new XMLHttpRequest();
	} catch (e){
		// Internet Explorer Browsers
		try{
			ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try{
				ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e){
				// Something went wrong
				alert("Your browser broke!");
				return false;
			}
		}
	}
	// Create a function that will receive data sent from the server
	ajaxRequest.onreadystatechange = function(){
		if(ajaxRequest.readyState == 4){
			document.myForm.time.value = ajaxRequest.responseText;
		}
	}
	try {
		ajaxRequest.open("GET", "http://squizzel.de/AdServer/clickcount.php?adID="+id, true);
	} catch (e) {
	}
	ajaxRequest.send(null); 
}



addLoadEvent(watchClick);

function watchClick()
{
  if (!document.getElementById) return true;
  var theBox = document.getElementById('ad124245');
  theBox.onclick = function(evt) {
    alert('klick');
  }
}  
