function NewWinCorner(objpath,popupwidth,popupheight)
{
    var popup_width=655
    var popup_height=570
    var screen_width=window.screen.width
    var screen_height=window.screen.height
    var popup_left=5
    var popup_top=5
    var win1=open(objpath,"","height="+popup_height+",width="+popup_width+",resizable=yes,status=no,left="+popup_left+",top="+popup_top+",scrollbars=no,location=no,dependent=yes");

   win1.focus();
   win1.document.close()
}
