function TxtWin(objpath,popupwidth,popupheight)
{
    var popup_width=popupwidth
    var popup_height=popupheight
    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=yes,location=no,dependent=yes");


   win1.focus();
   win1.document.close()
}
