path = self.location.pathname;
path = path.replace(/\\/g,"\/");
temp = path.split("\/");
for (i = 0; i < temp.length; i++)
{
if (temp[i] == "serien") break;
}
url = temp[i+1];

function popup(picture) {
    window.open('../pop.html?url=' + url + '&pic=' + picture,'pop1','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,top=50,left=50');
}