

var attribWithoutAll="location=no,menubar=no,toolbar=no,status=no";

attribWithoutAll+=",resizable=no,scrollbars=no,width=500,height=700";

var subwindow=0;

function ClosePopUp()

{

if (!subwindow) 

return; 

if (subwindow.closed) 

return; 

subwindow.close(); 

}

function PopUpWithoutAll()

{

ClosePopUp() 

/* hier eventuell den link ändern*/

subwindow=window.open("http://www.das-konzept.com/lions/lions/adventskalender.html","popup2",attribWithoutAll);

subwindow.moveTo(10,50);

}


