<!--
// language fenster
var win = null;


function productpop(aid, typus){
h ='500';
w = '600';
LeftPosition = (screen.width) ? ((screen.width-w)/2)+70 : 0;
TopPosition = (screen.height) ? ((screen.height-h)/2)+5: 0;
LeftPosition = 0;
TopPosition = 0;
settings =
'height='+h+',width='+ w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable,toolbar=1,location=1,status=no'
win = window.open("?id=97&aid=" + aid + "&typus=popup","projekte",settings)
if(win.window.focus){win.window.focus();}
}

function playerpop(aid){
h ='330';
w = '810';
LeftPosition = (screen.width) ? ((screen.width-w)/2)+1 : 0;
TopPosition = (screen.height) ? ((screen.height-h)/2)+5: 0;
settings =
'height='+h+',width='+ w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,noresizable,toolbar=no,location=no,status=no'
win = window.open("player_pop.php?id=" + aid,"player",settings)
if(win.window.focus){win.window.focus();}
}

function coverpop(url,artist,h){

w = h;
LeftPosition = (screen.width) ? ((screen.width-w)/2)+1 : 0;
TopPosition = (screen.height) ? ((screen.height-h)/2)+5: 0;
settings =
'height='+h+',width='+ w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,noresizable,toolbar=no,location=no,status=yes'
win = window.open("cover.php?url=" + url + "&artist=" + artist,"cover",settings)
if(win.window.focus){win.window.focus();}
}


function downloadmp3(url){

h ='330';
w = '610';
LeftPosition = (screen.width) ? ((screen.width-w)/2)+1 : 0;
TopPosition = (screen.height) ? ((screen.height-h)/2)+5: 0;
settings =
'height='+h+',width='+ w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,noresizable,toolbar=no,location=no,status=yes'
win = window.open(url,"cover",settings)
if(win.window.focus){win.window.focus();}
}

function dlhelp(oid,aid,isrc){

h ='330';
w = '610';
LeftPosition = (screen.width) ? ((screen.width-w)/2)+1 : 0;
TopPosition = (screen.height) ? ((screen.height-h)/2)+5: 0;
settings =
'height='+h+',width='+ w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,noresizable,toolbar=no,location=no,status=yes'
win = window.open("?id=105&oid=" + oid + "&aid=" + aid + "&isrc=" + isrc,"dlhelp",settings)
if(win.window.focus){win.window.focus();}
}


function closer(){
window.close;
}
//-->