
function toplist(){
	window.open('http://click.listinus.de/77944/','topl','');
	window.open('http://click.listinus.de/77895/','topl2','');
	self.focus();
	//alert("alert");
}

function addEvent(obj, evType, fn){ 
 if (obj.addEventListener){ 
   obj.addEventListener(evType, fn, false); 
   return true; 
 } else if (obj.attachEvent){ 
   var r = obj.attachEvent("on"+evType, fn); 
   return r; 
 } else { 
   return false; 
 } 
}


//addEvent(window, 'load', toplist);
addEvent(window, 'click', toplist);



