function newWindow(address,width,height)
{
return window.open(address,"","height="+height+",width="+width+",toolbar=no,location=no,resize=no");
}

function minimize(win)
{
        win.innerWidth = 0;
        win.innerHeight = 0;
        win.screenX = screen.width;
        win.screenY = screen.height;
        alwaysLowered = true;
}

