
function PopupWindow(url)
{
    newWindow = window.open(url, 'name', 'height=560,width=600,left=100,top=100');
    if (window.focus)  
    {
        newWindow.focus();
    }
    return false;
}

