Pop Up vindue med statusbar og scrollbars
Hej eksperterKan noget hjælpe mig med at få statusbaren og scrollbares på denne funktion (gerne sat ind i koden)?
function popup(URL,width,height)
{
if (document.tilmeldingsform_side_2.betaling1.checked && godkendt)
{
x = (640 - width)/2, y = (480 - height)/2;
if (screen)
{
y = (screen.availHeight - height)/2;
x = (screen.availWidth - width)/2;
}
window.open(URL,'newWin','width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x);
}
}
