// Links
links = new Array(
    "news/news.html#release-31",
    "news/news.html#jbps-pub",
    "news/news.html#easc2009",
    "news/news.html#uni-brno-coop-ext",
    "news/news.html#seminar-cologne",
    "news/news.html#cdadapco-competition",
    "news/news.html#tu-munich-coop-ext",
    "news/news.html#pitesti-coop");

// Tags
	news_rahmen_anf_1 = "<div id=\"news_ue\"><a href=\"";
   news_rahmen_anf_2 = "news/news.html\">News</a></div><div id=\"news\">";
   news_rahmen_end = "</div>" + "<br>";
   tag_auf = "<p><a href=\"";
   tag_auf_end = "\">";
   tag_auf_ohne_link = "<p>"
   tag_auf_first_1 = "<p id=\"first\"><a href=\""
   tag_auf_first_2 = "news/news.html\">";
   tag_zu = "</a></p>"
   tag_auf_full = "<p><strong>";
   strong_zu = "</strong><br>"
   tag_zu_full = "</p>";
   top_anker = "<p align=right><a href=\"../news/news.html#top\">Top</a></p><br>"

// Text der News
	news_ue = new Array(
	"P+Z launches THESEUS-FE v3.1",
	"Journal of Building Performance Simulation Publication",
	"Flowmaster Group and P+Z present at EASC2009",
   	"University of Brno extends cooperation",
   	"Meet the THESEUS-FE Team in Cologne",
	"P+Z award by CD-Adapco's CAE Guru competition",
	"Technical University of Munich extends close cooperation with P+Z",
	"New cooperation with University of Pitesti / Romania");

   news = new Array(
      "After months of intensive development and testing, P+Z Engineering is proud to announce the release of THESEUS-FE v3.1. Among a lot of bugfixes this update release contains many customer-related improvements and already a few preliminary features for the next generation of THESEUS-FE v4.0. Please have a look into the recently released THESEUS-FE Newsletter Vol. 1/2009 for more information about this and upcoming releases.",
      "Taylor & Francis Group accepted the joint paper titled \"Integrated thermal comfort analysis using a parametric manikin model for interactive real-time simulation\" for their <a href=\"http://www.tandf.co.uk/journals/titles/19401493.asp\">Journal of Building Performance Simulation (JBPS)</a>. The article, which is the result of a common work between Technical University Munich, Fraunhofer Institute for Building Physics and P+Z Engineering will be published in JBPS Volume Number 3, 2009. The publication is about a parametric multi-segment manikin model as the interface between Fiala’s human thermoregulation model for studying transient and local effects of thermal sensation and comfort prediction. The developed thermoregulation interface provides means to computational steering, i.e. to interact with an ongoing simulation. The local thermal sensation votes (LTSV) are based on and compared with experimental data which were obtained in a test chamber involving 24 test subjects for three levels of clothing insulation and a light level of activity.",
      "ANSYS, the organizer of the 4th European Automotive Simulation Conference (EASC2009) have accepted a joint contribution from Flowmaster Group and P+Z titled \"An Optimised Thermal Design and Development Process for Passenger Compartments of Vehicles\". This paper demonstrates a complementary approach for the complete process of a cabin's thermal development, making it readily applicable from the early concept phase through to the final test stage. The work and presentation is done in cooperation with Peter Baker, Senior Technical Specialist of Flowmaster.",
      "Due to the successful cooperation in the past. The Brno University of Technology started to extend their work with THESEUS-FE for their graduate or post-graduate students. P+Z will support one PhD work and two additional Master thesis in the field of advanced thermal comfort evaluation in automotive and aerospace industry. All works will be carried out at Professor Dr. Jicha's Faculty of Mechanical Engineering and will be supervised by Jan Fišer.",
      "P+Z decided to show the next generation of THESEUS-FE at the interactive infomation day of \"Seminar W&auml;rmemanagement\" in Cologne. The workshop will be arranged by well-known Professor Dr.-Ing. Deußen from FGM Forschungsgesellschaft Methoden / University of Applied Science Cologne and covers all aspects of Automotive Thermal Management. Beside some product presentations interested parties are able to test the software during the workshop.",
      "The panel of CD-Adapco judges selected P+Z's THESEUS-FE result figure out of more than 40 competitors for their 2009 desktop calendar. The obviously impressing post-processing image displayed at the month of June shows the result of a transient and fully coupled cool-down air conditioning simulation of a vehicle cabin between STAR-CD and THESEUS-FE. Illustrating the air velocity magnitude as stream lines and the temperature distribution at the surface of the summer-clothed driver. Taking into account multiple heat transfer mechanisms like sun and body radiation, forced convection and multi-layered conduction as well as an active thermo-physiological model of the human being. View the winning picture and get more information from <a href=\"http://www.cd-adapco.com/press_room/2008/12-16-calendar.html\">CD-adapco's announcement of 2009 Calendar Competition Winner</a>.",
      "After terminating the well scored and advanced master thesis of Jerômé Frisch at Civil Engineering and Surveying School of TU München (see <a href=\"../research/parametric-model-interactive-simulation.html\">RESEARCH area</a>), P+Z will accompany Mr. Frisch on his further academic career during his PhD studies. His promising doctor thesis is titled \"Computational Steering for Thermal Comfort Simulation\" and will be again supervised by Dr. Christoph van Treek, who is the teamleader of Computation in Engineering at German's elite institution.",
      "It is just about a bit more than a year ago now, that P+Z opened its branch office in Cluj-Napoca / Romania, but being profitable already. As a further sign of success, more and more interest of local companies and institutes arised. Beside win over Renault Technologie Roumanie for THESEUS-FE also a prospective PhD thesis titled \"Studies and researches regarding the insurance of the optimal microclimate inside the passenger compartment\" was initilized at Automotive Department / Faculty of Mechanics and Technology of University of Pitesti, which will be supervised by Dr. Mariana Ivanescu and is supported by P+Z Engineering GmbH.");

      anker = new Array(
        "<a name=\"release-31\"></a>",
        "<a name=\"jbps-pub\"></a>",
        "<a name=\"easc2009\"></a>",
        "<a name=\"uni-brno-coop-ext\"></a>",
        "<a name=\"seminar-cologne\"></a>",
        "<a name=\"cdadapco-competition\"></a>",
        "<a name=\"tu-munich-coop-ext\"></a>",
		"<a name=\"pitesti-coop\"></a>");

// erzeugt Suchformular!
function makeNews(link_zusatz) {
	// Der erste Newseintrag hat zuästzlich noch eine Anweisung für css
	newsText = news_rahmen_anf_1 + link_zusatz + news_rahmen_anf_2 + tag_auf_first_1 + link_zusatz + tag_auf_first_2 + news_ue[0] + tag_zu
   for (i = 1; i < news_ue.length; i++)
   {
   	newsText += tag_auf + link_zusatz + links[i] + tag_auf_end + news_ue[i] + tag_zu;
   }
   newsText += news_rahmen_end;

	document.write(newsText);
}

function fullNews() {
   fullNewsText = tag_auf_full + news_ue[0] + strong_zu + news[0] + tag_zu_full + "<br><br>";
   for (j = 1; j < news_ue.length; j++)
   {
   	fullNewsText += tag_auf_full + news_ue[j] + anker[j] + strong_zu + news[j] + top_anker + tag_zu_full;
   }
   document.write(fullNewsText);
}

function newsIndex() {
	makeNews("/");
}

function newsAnzeige() {
	makeNews("/");

}