var newWindow = '';

function popUp(url) 
{
    newWindow = window.open(url, 'naam', 'height=600,width=800');
    if (window.focus) 
    {
        newWindow.focus();
    }
    return false;
}