function print_article(nt_location,sname,w,h) {
	var win_opts = "dependent=0 ,toolbar=1,location=0,directories=0,status=0,menubar=1,";
  	  win_opts += "scrollbars=1,resizable=1,copyhistory=0,";
    	win_opts += "width=" + w + ",height=" + h + "top=10,left=10";
	parent.ntWin = window.open(nt_location, sname, win_opts);

	if (parent.ntWin.opener == null)
        parent.ntWin.opener = self;
	parent.ntWin.myname="sview";

}

function show_article(nt_location,sname,w,h) {
        var win_opts = "dependent=0 ,toolbar=0,location=0,directories=0,status=0,menubar=0,";
          win_opts += "scrollbars=1,resizable=1,copyhistory=0,";
        win_opts += "width=" + w + ",height=" + h + "top=10,left=10";
        parent.ntWin = window.open(nt_location, sname, win_opts);

        if (parent.ntWin.opener == null)
        parent.ntWin.opener = self;
        parent.ntWin.myname="inlist";

}
