If all chapters should be opened on any page, use the openany option (as has been recommended by @alwin already. If only particular chapters should open left, it's possible to switch off the openright feature by saying \makeatletter\@openrightfalse\makeatother. Don't forget to restore afterwards.
Some explanation by the definition of the \chapter command (taken from book.cls.
\newcommand\chapter{\if@openright\cleardoublepage\else\clearpage\fi
\thispagestyle{plain}%
\global\@topnum\z@
\@afterindentfalse
\secdef\@chapter\@schapter}
As can be seen, each \chapter (regardless whether \chapter or \chapter* is used) uses the same starter code, i.e. it tests whether \if@openright expands to true and does a \cleardoublepage, so it will start on the next odd page. If \if@openright is false, it will use \clearpage and the chapter starts on the next page, (even or odd).
Note I don't recommend various opening styles throughout a document.
\documentclass{book}
\makeatletter
\newcommand{\enableopenany}{%
\@openrightfalse%
}
\newcommand{\disableopenany}{%
\@openrighttrue%
}
\makeatother
\usepackage{blindtext}
\begin{document}
\chapter{Foo}
\blindtext[20]
\enableopenany
\chapter*{Foobar}
\blindtext[17]
\disableopenany
\chapter{Foobar again}
\blindtext[20]
\end{document}
