I want to create a barplot with three groups. Compared are two criteria. To make it more comprehensive here the plot I already generated

I approached this problem by using the example from Stacked barplots/groupplots with text labels in x-coordinate. You can see that criterion 1 has very small values in comparisson to the ones of criterion 2. So the Question is:
How can I create a second y-axis for the values of the second criterion? And how do I scale them?
MWE:
\documentclass{standalone}
\usepackage{pgfplots,pgfplotstable}
\usetikzlibrary{pgfplots.groupplots}
\pgfplotsset{compat=newest,legend columns=-1}
\pgfplotstableread{
Criterion criterion1 criterion2
part1 8 2349
part2 8 452
part3 14 1006
}\first
\pgfplotstableread{
Criterion criterion1 criterion2
part1 36 10220
part2 36 5891
part3 85 3160
}\second
\pgfplotstableread{
Criterion criterion1 criterion2
part1 97 25657
part2 97 18306
part3 184 7461
}\third
\begin{document}
\begin{tikzpicture}
\begin{groupplot}
[group style={%
columns=3,
group name=plots,
xlabels at=edge bottom,
y descriptions at=edge left,
},
ybar,
ymin=0,
ymax=27e3,
enlarge x limits={abs=.5},
width=0.45\textwidth,
height=0.6\textwidth,
scaled y ticks=base 10:-3,
xticklabels from table={\first}{Criterion},
x tick label style={rotate=90,anchor=east},
xtick=data,
]
\nextgroupplot[xlabel=item1,legend to name=grouplegend,ylabel=y-label]
\pgfplotstableforeachcolumn\first\as\col{%
\ifnum\pgfplotstablecol=0
\else
\edef\tmp{%
\noexpand\addplot table [x expr=\noexpand\coordindex,y=\col] {\noexpand\first};
\noexpand\addlegendentry {\col}%
}%
\tmp
\fi
}
\nextgroupplot[xlabel=item2]
\pgfplotstableforeachcolumn\second\as\col{%
\ifnum\pgfplotstablecol=0
\else
\edef\tmp{%
\noexpand\addplot table [x expr=\noexpand\coordindex,y=\col] {\noexpand\second};
}%
\tmp
\fi
}
\nextgroupplot[xlabel=item3]
\pgfplotstableforeachcolumn\third\as\col{%
\ifnum\pgfplotstablecol=0
\else
\edef\tmp{%
\noexpand\addplot table [x expr=\noexpand\coordindex,y=\col] {\noexpand\third};
}%
\tmp
\fi
}
\end{groupplot}
\node at (plots c2r1.north) [anchor=south, yshift=.6cm] {\ref{grouplegend}};
\end{tikzpicture}
\end{document}

@<name>to notify a user of your comment. – Jake Dec 22 '11 at 07:52epslatexortikzterminals. This is much easier using PGFplots, and since PGFplots can use gnuplot as its backend, I'd always go with PGFplots instead of trying to transfer a pure gnuplot graph into a document. – Jake Dec 22 '11 at 07:55