var newwindow;
function popup(url)
{
        newwindow=window.open(url,'name','height=400,width=400,scrollbars=1,resizable=1');
        if (window.focus) {newwindow.focus()}
}
