Package scrextend provides extended title pages:
\documentclass[a4paper,twoside,10pt]{report}
\usepackage[extendedfeature=title]{scrextend}
\usepackage{mwe}
\begin{document}
\title{(Title)}
\subtitle{( ABC......(new line) Timeperiod: 10.11.-12.11.12)}
\author{(Author)}
\publishers{\includegraphics{example-image}}
\maketitle
\end{document}
with result:

If the first title page should be a cover page, you can add option titlepage=firstiscover and modify the margins of the cover page with \coverpagetopmargin, \coverpagebottommargin, \coverpageleftmargin and \coverpagerightmargin. Note, these are macros not lengths.
\documentclass[a4paper,twoside,10pt]{report}
\usepackage[extendedfeature=title,titlepage=firstiscover]{scrextend}
\usepackage{mwe}
\renewcommand*{\coverpagebottommargin}{.3\paperheight}
\begin{document}
\title{(Title)}
\subtitle{( ABC......(new line) Timeperiod: 10.11.-12.11.12)}
\author{(Author)}
\publishers{\includegraphics{example-image}}
\maketitle
\end{document}

figureenvironment, which serves no purpose. An\includegraphicscommand can go anywhere. – egreg Dec 21 '12 at 12:32