/*PopUpfunktion ALT
function pop_up(url,name,breit,hoch,menubar)
{
fenster=window.open(url,name,'width='+breit+',height='+hoch+',toolbar=no,location=no,directories=no,status=no,menubar='+menubar+',scrollbars=yes,resizable=yes,copyhistory=yes');
fenster.focus();
}

function pop_up_gewinn(url,name,breit,hoch,menubar)
{
fenster=window.open(url,name,'width='+breit+',height='+hoch+',toolbar=no,location=no,directories=no,status=no,menubar='+menubar+',scrollbars=no,resizable=yes,copyhistory=yes');
fenster.focus();
}

*/


//PopUpfunktion
function pop_up(url,name,breit,hoch,menubar,scrollbars)
{
fenster=window.open(url,name,'width='+breit+',height='+hoch+',toolbar=no,location=no,directories=no,status=no,menubar='+menubar+',scrollbars='+scrollbars+',resizable=yes,copyhistory=yes');
fenster.focus();
}



/*
function pop_up_gewinn(url,name,breit,hoch,menubar)
{
fenster=window.open(url,name,'width='+breit+',height='+hoch+',toolbar=no,location=no,directories=no,status=no,menubar='+menubar+',scrollbars=no,resizable=yes,copyhistory=yes');
fenster.focus();
}

*/