<!-- 
function findeL(obj){ 
var lPos = 0; 
if (obj.offsetParent){ 
while (obj.offsetParent){ 
lPos += obj.offsetLeft 
obj = obj.offsetParent; 
} 
} 
else if (obj.x) 
lPos += obj.x; 
return lPos; 
} 
function findeO(obj){ 
var oPos = 0; 
if (obj.offsetParent){ 
while (obj.offsetParent){ 
oPos += obj.offsetTop 
obj = obj.offsetParent; 
} 
} 
else if (obj.y) 
oPos += obj.y; 
return oPos; 
}
function neueSeite(filter){
    
    window.location.href="index.php?c="+filter;
} 
function details(filter){
    
    window.location.href="details.php?c="+filter;
} 
//--> 
