function bigWindow(url,width,height) 
{
    args=width?"width="+width+",":"width=300,";
    args+=height?"height="+height:"height=400";
    args+=",scrollbars=yes,status=no,resizable,location=no";
    win=window.open(url,'popWin2',args);
    win.moveTo(0,0);
    win.resizeTo(width+10,height+10);
    win.focus();
}

/*
function bigWindow(url,width,height) 
{
        w2=width?width+400:300;
        h2=height?height+20:400;
        args="width="+w2+",";
        args+="height="+h2;
        args+=",scrollbars=yes,status=no,resizable,location=no";
        alert(args);
        win=window.open(url,'popWin2',args);
        win.moveTo(0,0);
        win.resizeTo(width,height);
        win.focus();
}


*/