function openwin(name)
{
    w = (window.screen.width)/3*2 - 20;
    l = window.screen.width - w - 20;
    h = window.screen.height - 200;
    hWnd = open(name,"Картинки","toolbar=0,location=0,menubar=1,scrollbars=1,status=1,resizable=1,width="+w+",height="+h+",left="+l+",top=40");
    hWnd.focus();
}

