';
msg=window.open('','GfxWindow','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes');
msg.document.writeln('
\n'+str+'\n\n\n\n');
msg.document.writeln('
\n\n');
}
function WinOpen(file) {
msg=window.open(file,'ExtraWindow','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,WIDTH=2000,HEIGHT=2000');
}
function MapOpen() {
if (top.extmap == 1)
EXT_MAP.close();
else
EXT_MAP = window.open("map-ext.htm", "EXT_MAP", "toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,WIDTH=200,HEIGHT=600");
}
function debug() {
top.LOGO.location='logo.htm';
}
function go (name) {
with (top.site)
beam_to(find_entry(name, chief(righthere)));
}
function bookmark () {
var index = top.site.righthere;
var path = "<" + top.site.items[index].title;
while (index > 0) {
index = top.site.chief(index);
path += "<" + top.site.items[index].title;
}
window.open('bookmark.htm', 'bookwin', 'width=200,height=100');
if (navigator.appVersion.indexOf("Mac") > 0)
bookwin.location=bookmark.htm;
top.location.search = siteinfo.substring(0, siteinfo.indexOf("%") + 1) + top.viewpoints.current_view
+ "%" + path;
}
function startindex(path) {
var index = 0;
var layer = -1;
var title;
for (var pathstart=path.lastIndexOf("<"); pathstart > -1;) {
title = path.substring(pathstart + 1, path.length);
if((top.site.items[index].title == title) && (top.site.items[index].layer > layer)) {
path = path.substring(0, pathstart);
pathstart = path.lastIndexOf("<");
layer++
}
if (index == top.site.entries -1){
top.go("ERROR");
pathstart = -1;
}
if (pathstart > -1) index++;
}
return index;
}
function get_body (wish, bg) {
if ((bandwidth=="L") || (prn==1)){
wish = "";
}
function print () {
top.prn = 1 - top.prn;
top.SCREEN.location=top.SCREEN.location;
}
function F_Addview(view) {
this.items[this.entries] = view;
this.entries++;
}
function F_Autoscope(entry) {
var i = entry + 1;
var autoscope = 0;
if (i < top.site.entries ) {
autoscope = top.site.items[entry].scope
while (top.site.items[i].layer > top.site.items[entry].layer) {
autoscope = autoscope | top.site.items[i].scope;
i++;
if ((i > top.site.entries - 1) || (autoscope & this.current_view))
break;
}
}
return autoscope;
}
function F_SetView(scope) {
this.current_view = scope;
top.MAP.location = 'JavaScript:top.site.create_map('+top.site.righthere+')';
}
function F_Push (EntryNr) {
with (this) {
if ((top.site.items[EntryNr].layer > -1) && (EntryNr != items[0])) {
items[size] = EntryNr;
if (enabled < 0)
enabled = 1
else {
index = size;
ceiling = size;
}
size++;
}
}
}
function F_Clear () {
top.memory = new private_history();
}
function F_Back () {
var aim;
var mode = top.memmode;
if (mode != "N") {
with(this) {
enabled = -1;
if ((index > 0) && (mode == "J")) {
for(i = 0; i <= size; i++) {
if (items[i] == top.site.righthere) {
if(i > 0) {
aim = items[i-1];
index = i-1;
}
else
aim = -1;
break;
}
}
}
else {
aim = top.site.righthere - 1;
}
top.site.beam_to(aim);
}
}
else top.SCREEN.history.back();
}
function F_Forward () {
var aim;
var mode = top.memmode;
if (mode != "N") {
with(this) {
if ((index < ceiling) && (mode =="J")) {
enabled = -1;
index ++;
aim = items[index];
}
else {
top.site.righthere=items [ceiling];
index = size;
aim = top.site.righthere + 1;
while ((top.viewpoints.autoscope(aim) & top.viewpoints.current_view) == 0) {
if ( aim > top.site.entries - 2) {
aim = - 1;
enabled = -1;
break;
}
aim++;
}
}
}
top.site.beam_to(aim);
}
else top.SCREEN.history.forward();
}
function F_AddPage (page) {
this.items[this.entries] = page;
if ((this.entries > 0) && (this.items[this.entries].reference != "header") )
if (this.items[this.entries].layer > this.items[this.entries-1].layer)
this.items[this.entries-1].subdirectory = 1;
this.entries++;
}
function F_Feedback (identity) {
var pattern = new Array();
var filename, refer;
var j = this.righthere;
var here = top.SCREEN.location.href;
var enable;
if ((this.fb_enabled > 0) && (top.showing != here)) {
filename = here.substring(top.root.length, here.length).toLowerCase();
for (var i=0; i < this.entries; i++) {
refer = this.items[i].reference;
refer = refer.toLowerCase();
pattern[i]=refer;
}
j = this.find(pattern, filename);
if (( j != this.righthere)&& (j != this.entries - 1)){
top.memory.push(j);
this.adapt_map (j, 2);
top.MAP.location='JavaScript:top.site.create_map('+j+')';
this.righthere = j;
}
top.showing = here;
}
else enable=setTimeout("top.site.fb_enabled = 1", 500);
}
function F_AutoFB() {
var timerID;
if (top.autofb > 0)
timerID = setTimeout("top.site.feedback(); top.site.auto_fb()", 500);
}
function F_FindEntry (name, counter) {
var pattern = new Array();
for (var i=0; i < this.entries; i++)
pattern[i] = this.items[i].title
counter = this.find(pattern, name);
return counter;
}
function F_Find (pattern, comparison) {
var found = new Array();
var family = new Array();
var amount = 0;
var myself = this.righthere;
var relative = this.entries -1;
var again;
for (var i=0; i < this.entries; i++) {
if (pattern[i] == comparison) {
found[amount] = i;
family[amount] = i;
amount++;
}
}
for (var k=0; k < 2; k++) {
myself = this.righthere;
for (var j=0; j< this.entries; j++) {
for (var m=0; m 0))
entry_chief--;
return entry_chief;
}
function F_Beam (entry) {
var fileroot = top.root;
this.fb_enabled = -1;
if ((entry >=0) && (entry <= this.entries)) {
this.righthere = entry;
top.memory.push(entry);
this.adapt_map(entry, top.openmenu);
top.SCREEN.location = fileroot + this.items[entry].reference;
top.MAP.location = 'JavaScript:top.site.create_map('+entry+')';
}
}
function F_CreateMap(entry) {
var content = "";
var lyrics;
for (var i=0; i < top.viewpoints.entries; i++) with (top.viewpoints.items[i]) {
lyrics = name.link("JavaScript:top.viewpoints.setview("+code+")");
content += top.site.mgfont + lyrics + "
";
if (code == top.viewpoints.current_view) {
content += top.site.create_doc(entry, 0, -1, top.site.ecol, top.site.hcol, top.site.hsize, "mapicon.gif", 1, top.site.mfont)
+ "";
}
content += "
";
}
content += "";
if (top.extmap == 1)
top.EXT_MAP.top.map.update(entry);
return (content);
}
function F_Toggle (victim, entry) {
this.items[victim].subdirectory = 3 - this.items[victim].subdirectory;
top.MAP.location='JavaScript:top.site.create_map('+entry+')';
}
function F_AdaptMap (entry, mode) {
var path = this.items[entry].title;
var i = entry;
for (var c=0; c0) {
while ( (this.items[i].layer >= this.items[entry].layer) && (i>0) )
i--;
entry = i;
this.items[entry].subdirectory=2;
}
}
function F_Create (entry, start, comp_layer, entrycol, headercol,
headersize, iconfile, iconlink, font) {
var shift = " ";
var icon, lyrics;
var content ="";
for (var i=start; i < this.entries; i++) with (this.items[i]){
if (layer < comp_layer)
break;
if (viewpoints.autoscope(i) & top.viewpoints.current_view) {
indent="";
for (var j=0; j < layer; j++)
indent += "
";
if (i!=0) {
icon = "
";
if (subdirectory > 0) {
if (iconlink == 1)
icon = icon.link("JavaScript:top.site.toggle("+i+","+entry+")");
else
icon = icon.link("JavaScript:top.site.beam_to("+i+")");
}
}
else icon="";
if (i==entry)
lyrics = "" + title + "";
else {
if (reference == "header")
lyrics = "" + title + "";
else
lyrics = (title).link("JavaScript:top.site.beam_to("+i+")");
}
if (title.charAt(0) != "_")
content += "| " + indent + icon + font + shift + lyrics + " |
\n";
}
while ( (i";
}
function aip() {
this.add = F_AddPage;
this.add_page = F_AddPage;
this.feedback = F_Feedback;
this.auto_fb = F_AutoFB;
this.find = F_Find;
this.beam_to = F_Beam;
this.find_entry = F_FindEntry;
this.chief = F_Chief;
this.adapt_map = F_AdaptMap;
this.create_map = F_CreateMap;
this.toggle = F_Toggle;
this.create_doc = F_Create;
this.bcol = top.m_bcol;
this.fcol = top.m_fcol;
this.ecol = top.m_ecol;
this.hcol = top.m_hcol;
this.mapbg = top.m_bg;
this.mfont = top.m_font;
this.mgfont = top.m_gfont;
this.items = new Array();
this.entries = 0;
this.righthere = 0;
this.fb_enabled = 0;
return this;
}
function point_of_view() {
this.autoscope = F_Autoscope;
this.add = F_Addview;
this.setview = F_SetView;
this.current_view = top.default_view;
this.items = new Array();
this.entries = 0;
return this;
}
function page (title, reference, scope, layer) {
this.title = title;
this.reference = reference;
this.scope = scope;
this.layer = layer;
this.subdirectory = 0;
return this;
}
function view (name, code) {
this.name = name;
this.code = code;
return this;
}
function private_history() {
this.push = F_Push;
this.back = F_Back;
this.forward = F_Forward;
this.clear = F_Clear;
this.size = 0;
this.items = new Array();
this.items[0] = -1;
this.enabled = 1;
this.ceiling = 0;
this.index = 0;
return this;
}
function service() {
this.get_body = F_GetBody;
this.bookmark = F_Bookmark;
this.debug = F_Debug;
return this;
}
//globals
//map options
var extmap = 0;
var EXT_MAP;
var m_gfont = ""
var m_font = ""
//Beliebiger String, der in das BODY Tag eingefügt wird:
var m_bg = ""
//map colors
var m_bcol = "000090";
var m_fcol = "FFFFFF";
var m_ecol = "FFFF00";
var m_hcol = "FF0000";
//saved options
if (top.location.search == "")
siteinfo = "?(0H11KJ)%255%HOME";
else {
if (top.location.search.indexOf("%") < 9)
siteinfo = "?(0H11KJ)%255%HOME";
else
siteinfo = top.location.search;
}
with(top.location) {
var rootend = Math.max(href.lastIndexOf("/"), href.lastIndexOf("\\"));
var root = href.substring(0, rootend + 1);
var iconroot = root + "icons/";
}
var menumode = siteinfo.charAt(2);
var bandwidth = siteinfo.charAt(3);
var autofb = siteinfo.charAt(4);
var openmenu = siteinfo.charAt(5);
var colors = siteinfo.charAt(6);
var memmode = siteinfo.charAt(7);
var path = siteinfo.substring(siteinfo.lastIndexOf("%") +1, siteinfo.length);
var default_view = siteinfo.substring(siteinfo.indexOf("%") + 1, siteinfo.lastIndexOf("%"));
var showing = "";
var prn = "0";
//ralf2 compatibility
var language = "D";
var browser = navigator.appName.substring(0,1);
var site = new aip();
var memory = new private_history();
var viewpoints = new point_of_view();
// Add Viewpoints here
viewpoints.add(new view("", "255"));
// Add TOC here
with (site) {
//***** TOC will be inserted before here *****
add(new page("IVS","html/m1.htm","255","0"));
add(new page("Aktuelles","html/m46.htm","255","1"));
add(new page("Mitgliederversammlung 2008","html/167.htm","255","2"));
add(new page("Ausschreibung: IVS award 2008","html/187.htm","255","2"));
add(new page("IVS","html/m35.htm","255","1"));
add(new page("IVS","html/42.htm","255","2"));
add(new page("Mitgliedschaft","html/66.htm","255","2"));
add(new page("Antrag","html/68.htm","255","2"));
add(new page("Geschäftsordnung","html/65.htm","255","2"));
add(new page("Vorstand","html/43.htm","255","2"));
add(new page("Geschäftsstelle","html/41.htm","255","2"));
add(new page("Wegweiser","plugins/152.pdf","255","2"));
add(new page("Mitglieder","html/57.htm","255","2"));
add(new page("Veranstaltungen","html/m41.htm","255","1"));
add(new page("2008","html/m266.htm","255","2"));
add(new page("Workshop \"Jugend und Technik\"","html/191.htm","255","3"));
add(new page("26.09.2008","html/192.htm","255","3"));
add(new page("2007","html/m242.htm","255","2"));
add(new page("04.07.2007","html/183.htm","255","3"));
add(new page("08.03.2007","html/170.htm","255","3"));
add(new page("2006","html/m218.htm","255","2"));
add(new page("25/26.09.2006","html/163.htm","255","3"));
add(new page("23.05.2006","html/160.htm","255","3"));
add(new page("09.03.2006","html/158.htm","255","3"));
add(new page("23.02.2006: Exkursion zum HLRS","html/156.htm","255","3"));
add(new page("2005","html/m185.htm","255","2"));
add(new page("01.02.05","html/140.htm","255","3"));
add(new page("03.05.2005: ZST-Vortragsreihe \"Simulierte Welten\"","html/142.htm","255","3"));
add(new page("12.05.2005: Vortrag von Prof. Dr. Mike Levine","html/145.htm","255","3"));
add(new page("05.07.2005: ZST-Vortragsreihe \"Simulierte Welten\"","html/143.htm","255","3"));
add(new page("07.06.2005: ZST-Vortragsreihe \"Simulierte Welten\"","html/144.htm","255","3"));
add(new page("2004","html/m158.htm","255","2"));
add(new page("23.01.04","html/124.htm","255","3"));
add(new page("03.02.04","html/125.htm","255","3"));
add(new page("04.05.04","html/128.htm","255","3"));
add(new page("10.05.2004","html/126.htm","255","3"));
add(new page("19.05.2004","html/127.htm","255","3"));
add(new page("01.06.04","html/131.htm","255","3"));
add(new page("29.06.04","html/132.htm","255","3"));
add(new page("06.07.04","html/133.htm","255","3"));
add(new page("02.11.04","html/137.htm","255","3"));
add(new page("07.12.04","html/138.htm","255","3"));
add(new page("09.12.04","plugins/141.pdf","255","3"));
add(new page("2003","html/m134.htm","255","2"));
add(new page("30.01.03","html/111.htm","255","3"));
add(new page("06.05.03","html/112.htm","255","3"));
add(new page("03.06.03","html/113.htm","255","3"));
add(new page("17.06.03","html/114.htm","255","3"));
add(new page("16./24.07.03","html/115.htm","255","3"));
add(new page("30.07.03","html/116.htm","255","3"));
add(new page("04.11.03","html/119.htm","255","3"));
add(new page("02.12.03","html/120.htm","255","3"));
add(new page("2002","html/m101.htm","255","2"));
add(new page("06.02.2002","html/92.htm","255","3"));
add(new page("16.05.02","html/95.htm","255","3"));
add(new page("18.07.2002","html/96.htm","255","3"));
add(new page("18.07.02","html/102.htm","255","3"));
add(new page("14.11.02","html/103.htm","255","3"));
add(new page("05.12.02","html/104.htm","255","3"));
add(new page("12.12.02","html/105.htm","255","3"));
add(new page("2001","html/m83.htm","255","2"));
add(new page("15.01.01","html/81.htm","255","3"));
add(new page("11.05.01","html/82.htm","255","3"));
add(new page("23.05.01","html/83.htm","255","3"));
add(new page("17.05.01","html/86.htm","255","3"));
add(new page("23.07.01","html/88.htm","255","3"));
add(new page("10.12.01","html/89.htm","255","3"));
add(new page("2000","html/m47.htm","255","2"));
add(new page("01./02.2000","html/54.htm","255","3"));
add(new page("02.02.2000","html/56.htm","255","3"));
add(new page("15.06.2000","html/74.htm","255","3"));
add(new page("03.07.2000","html/69.htm","255","3"));
add(new page("20.07.2000","html/75.htm","255","3"));
add(new page("24.11.2000","html/79.htm","255","3"));
add(new page("1999","html/m42.htm","255","2"));
add(new page("24.11.1999","html/51.htm","255","3"));
add(new page("13.12.1999","html/52.htm","255","3"));
add(new page("Award","html/m78.htm","255","1"));
add(new page("Satzung","html/154.htm","255","2"));
add(new page("Ausschreibung 2008","html/187.htm","255","2"));
add(new page("Preisträger 2007","html/186.htm","255","2"));
add(new page("Ausschreibung 2007","html/171.htm","255","2"));
add(new page("Preisträger 2006","html/166.htm","255","2"));
add(new page("Ausschreibung 2006","html/157.htm","255","2"));
add(new page("Preisträger 2005","html/151.htm","255","2"));
add(new page("Ausschreibung 2005","html/146.htm","255","2"));
add(new page("Preisträger 2004","html/134.htm","255","2"));
add(new page("Ausschreibung 2004","html/129.htm","255","2"));
add(new page("Preisträger 2003","html/130.htm","255","2"));
add(new page("Ausschreibung 2003","html/109.htm","255","2"));
add(new page("Preisträger 2002","html/108.htm","255","2"));
add(new page("Ausschreibung 2002","html/100.htm","255","2"));
add(new page("Preisträger 2001","html/99.htm","255","2"));
add(new page("Ausschreibung 2001","html/87.htm","255","2"));
add(new page("Preisträger 2000","html/78.htm","255","2"));
add(new page("Ausschreibung 2000","html/77.htm","255","2"));
add(new page("Newsletter","html/m67.htm","255","1"));
add(new page("11. Ausgabe/2007 HTML","html/184.htm","255","2"));
add(new page("Editorial","html/184_2.htm","255","3"));
add(new page("Bericht: Vortrag „From Thinking to Acting: Anticipation and Reaction“","html/184_3.htm","255","3"));
add(new page("Bericht: Vortrag „Performance Technology for Productive, High-End Parallel Computing“","html/184_4.htm","255","3"));
add(new page("Bericht: Vortrag „The role of a simulation tool in the creation and transformation of knowledge in a company in the automotive industry“","html/184_5.htm","255","3"));
add(new page("Vorstellung des Instituts für Gebäudeenergetik der Universität Stuttgart","html/184_6.htm","255","3"));
add(new page("Aktuelles Schlagwort: „Die Herausforderungen an den zukünftigen Luftverkehr -Leitlinien für die Luftfahrtforschung in Europa","html/184_7.htm","255","3"));
add(new page("Verschiedenes","html/184_8.htm","255","3"));
add(new page("Impressum","html/184_10.htm","255","3"));
add(new page("11. Ausgabe/2007 PDF","plugins/185.pdf","255","2"));
add(new page("10. Ausgabe/2006 HTML","html/159.htm","255","2"));
add(new page("Editorial","html/159_2.htm","255","3"));
add(new page("Bericht: Führung durch das neue Gebäude des HLRS","html/159_3.htm","255","3"));
add(new page("Bericht: Vortrag „Cellprozessoren und andere Hardware-Entwicklungen“","html/159_4.htm","255","3"));
add(new page("Studiengang „Verfahrenstechnik “ an der Universität Stuttgart","html/159_5.htm","255","3"));
add(new page("Aktuelles Schlagwort: „(Computational) Aero-Akustik“","html/159_6.htm","255","3"));
add(new page("Verschiedenes","html/159_7.htm","255","3"));
add(new page("Impressum","html/159_9.htm","255","3"));
add(new page("10. Ausgabe/2006 PDF","plugins/161.pdf","255","2"));
add(new page("9. Ausgabe/2005 HTML","html/148.htm","255","2"));
add(new page("Editorial","html/148_2.htm","255","3"));
add(new page("Bericht: Workshop „Simulation und Virtual Reality in mittelständischen Unternehmen - Perspektiven für die Automobil - und Zulieferindustrie“","html/148_3.htm","255","3"));
add(new page("Bericht: Workshop „Aktuelle Trends im Hochleistungsrechnen“","html/148_4.htm","255","3"));
add(new page("Studiengang „Immobilientechnik und Immobilienwirtschaft“ an der Universität Stuttgart","html/148_5.htm","255","3"));
add(new page("Aktuelles Schlagwort: „Semantic Web“","html/148_6.htm","255","3"));
add(new page("Materialprüfungsanstalt, MPA, Universität Stuttgart","html/148_7.htm","255","3"));
add(new page("Verschiedenes","html/148_22.htm","255","3"));
add(new page("Impressum","html/148_23.htm","255","3"));
add(new page("9. Ausgabe/2005 PDF","plugins/149.pdf","255","2"));
add(new page("8. Ausgabe/2004 HTML","html/135.htm","255","2"));
add(new page("Editorial","html/135_1.htm","255","3"));
add(new page("Terminkalender","html/135_2.htm","255","3"));
add(new page("Bericht: Panelveranstaltung „Die Zukunft des Supercomputing“","html/135_3.htm","255","3"));
add(new page("Bericht: Workshop „Moderation“","html/135_4.htm","255","3"));
add(new page("Bericht: Veranstaltung „GRID Computing”","html/135_5.htm","255","3"));
add(new page("Bericht: Mitgliederversammlung 2004","html/135_6.htm","255","3"));
add(new page("Bericht: Studiengang Automatisierungstechnik in der Produktion","html/135_7.htm","255","3"));
add(new page("Aktuelles Schlagwort: Neuronale Netze","html/135_9.htm","255","3"));
add(new page("Vorstellung: Institut für Wasserbau IWS, Institut für Wasserbau an der Universität Stuttgart","html/135_10.htm","255","3"));
add(new page("Verschiedenes","html/135_11.htm","255","3"));
add(new page("Impressum","html/135_13.htm","255","3"));
add(new page("8. Ausgabe/2004 PDF","plugins/136.pdf","255","2"));
add(new page("7. Ausgabe/2003","html/122.htm","255","2"));
add(new page("Editorial","html/122_2.htm","255","3"));
add(new page("Terminkalender","html/122_3.htm","255","3"));
add(new page("Bericht: Kurse „Java“ und „Web-Programmierung“","html/122_4.htm","255","3"));
add(new page("Bericht: Vortrag „Storage Resource Broker“","html/122_5.htm","255","3"));
add(new page("Bericht: Vorträge der Reihe „Simulierte Welten“","html/122_6.htm","255","3"));
add(new page("Bericht: Masterstudiengang „Quality Control, Solid Waste and Waste Water Process Engineering (WASTE)”","html/122_7.htm","255","3"));
add(new page("Aktuelles Schlagwort: „Model Checking“","html/122_11.htm","255","3"));
add(new page("Vorstellung: Das Zentrum für Simulationstechnik (ZST)","html/122_12.htm","255","3"));
add(new page("Verschiedenes","html/122_22.htm","255","3"));
add(new page("Impressum","html/122_24.htm","255","3"));
add(new page("7. Ausgabe/2003 PDF","plugins/121.pdf","255","2"));
add(new page("6. Ausgabe/2003","html/117.htm","255","2"));
add(new page("Editorial","html/117_1.htm","255","3"));
add(new page("Terminkalender","html/117_2.htm","255","3"));
add(new page("Bericht: Veranstaltung „Simulation und Modellierung“","html/117_3.htm","255","3"));
add(new page("Bericht: Vortrag „Contemporary Programming Language Design“","html/117_4.htm","255","3"));
add(new page("Bericht: Vortrag „On-Line Science“","html/117_5.htm","255","3"));
add(new page("Bericht: Studiengang „Technologiemanagement“","html/117_6.htm","255","3"));
add(new page("Lehrveranstaltung","html/117_7.htm","255","3"));
add(new page("Tabelle 1: Stundentafel des Grundstudiums","html/117_8.htm","255","3"));
add(new page("Pflichtfächer","html/117_9.htm","255","3"));
add(new page("Wahlpflichtfächer","html/117_10.htm","255","3"));
add(new page("Nichttechn./alternatives Fach","html/117_11.htm","255","3"));
add(new page("Diplomarbeit","html/117_12.htm","255","3"));
add(new page("Tabelle 2: Stundentafel des Hauptstudiums","html/117_13.htm","255","3"));
add(new page("Aktuelles Schlagwort: „Agenten in der Automatisierungstechnik“","html/117_14.htm","255","3"));
add(new page("Vorstellung: Das Höchstleistungsrechenzentrum Stuttgart (HLRS) und der Lehrstuhl für Höchstleistungsrechnen","html/117_20.htm","255","3"));
add(new page("Verschiedenes","html/117_30.htm","255","3"));
add(new page("Impressum","html/117_32.htm","255","3"));
add(new page("6. Ausgabe/2003 PDF","plugins/118.pdf","255","2"));
add(new page("5. Ausgabe/2002","html/106.htm","255","2"));
add(new page("Editorial","html/106_1.htm","255","3"));
add(new page("Terminkalender","html/106_2.htm","255","3"));
add(new page("Bericht: Vortrag „Java, SQL und web-basierte Anwendungen“","html/106_3.htm","255","3"));
add(new page("Bericht: Workshop „XML - Einführung mit praktischer Übung“","html/106_4.htm","255","3"));
add(new page("Bericht: Veranstaltung „Fussballroboter“","html/106_5.htm","255","3"));
add(new page("Bericht: Vortrag „Engineering Management in Japan's Software Factories“","html/106_6.htm","255","3"));
add(new page("Bericht: Vortrag „DV-Sicherheit“","html/106_7.htm","255","3"));
add(new page("Bericht: Mitgliederversammlung 2002","html/106_8.htm","255","3"));
add(new page("Bericht: Bachelor-Studiengang „Wirtschaftsinformatik“","html/106_9.htm","255","3"));
add(new page("Aktuelles Schlagwort: „Data Mining“","html/106_11.htm","255","3"));
add(new page("Vorstellung: Lehrstuhls für Systemtheorie und Signalverarbeitung","html/106_16.htm","255","3"));
add(new page("Verschiedenes","html/106_17.htm","255","3"));
add(new page("Impressum","html/106_19.htm","255","3"));
add(new page("5. Ausgabe/2002 PDF","plugins/107.pdf","255","2"));
add(new page("4. Ausgabe/2002","html/97.htm","255","2"));
add(new page("Editorial","html/97_1.htm","255","3"));
add(new page("Terminkalender","html/97_2.htm","255","3"));
add(new page("Bericht: Panelveranstaltung „Evaluation von Studiengängen“","html/97_3.htm","255","3"));
add(new page("Bericht: Panelveranstaltung „Nutzen zertifizierter Qualitätsmanagementsysteme“","html/97_4.htm","255","3"));
add(new page("Bericht: Panelveranstaltung „Neuronale Netze“","html/97_5.htm","255","3"));
add(new page("Auswertung der Veranstaltungsumfrage","html/97_6.htm","255","3"));
add(new page("Bericht: Studiengang Fahrzeug- und Motorentechnik","html/97_7.htm","255","3"));
add(new page("Aktuelles Schlagwort: „Web-Technologien für Fern-Services“","html/97_8.htm","255","3"));
add(new page("Verschiedenes","html/97_9.htm","255","3"));
add(new page("Impressum","html/97_11.htm","255","3"));
add(new page("4. Ausgabe/2002 PDF","plugins/98.pdf","255","2"));
add(new page("3. Ausgabe/2001","html/94.htm","255","2"));
add(new page("Editorial","html/94_1.htm","255","3"));
add(new page("Terminkalender","html/94_2.htm","255","3"));
add(new page("Bericht: IVS-Award 2001","html/94_3.htm","255","3"));
add(new page("Bericht: Workshop „Rhetorik“","html/94_4.htm","255","3"));
add(new page("Bericht: Mitgliederversammlung 2001","html/94_5.htm","255","3"));
add(new page("Vorstellung: Institut für Automatisierungs- und Softwareteechnik (IAS)","html/94_6.htm","255","3"));
add(new page("Bericht: MuSofT - Multimedia in der SoftwareTechnik","html/94_12.htm","255","3"));
add(new page("Bericht: Auslandsorientierter Studiengang „Water Resources Engineering and Management“ (WAREM)","html/94_17.htm","255","3"));
add(new page("Umfrage: Veranstaltungen 2002","html/94_19.htm","255","3"));
add(new page("Umfrage: Themen für Newsletter-Artikel und Panelveranstaltungen","html/94_20.htm","255","3"));
add(new page("Verschiedenes","html/94_21.htm","255","3"));
add(new page("Impressum","html/94_24.htm","255","3"));
add(new page("3. Ausgabe/2001 PDF","plugins/93.pdf","255","2"));
add(new page("2. Ausgabe/2001","html/84.htm","255","2"));
add(new page("Editorial","html/84_1.htm","255","3"));
add(new page("Terminkalender","html/84_2.htm","255","3"));
add(new page("Veränderungen im Mitgliederkreis","html/84_3.htm","255","3"));
add(new page("Bericht: IVS-Award 2000","html/84_4.htm","255","3"));
add(new page("Bericht: Workshop „Selbstmanagement“","html/84_5.htm","255","3"));
add(new page("Bericht: Java-Tutorien","html/84_6.htm","255","3"));
add(new page("Vorstellung: Institut für Parallele und Verteilte Höchstleistungsrechner (IPVR)","html/84_7.htm","255","3"));
add(new page("Bericht: MSc-Studiengang Computational Mechanics of Materials and Structures (COMMAS)","html/84_13.htm","255","3"));
add(new page("Verschiedenes","html/84_18.htm","255","3"));
add(new page("Impressum","html/84_22.htm","255","3"));
add(new page("2. Ausgabe/2001 PDF","plugins/85.pdf","255","2"));
add(new page("1. Ausgabe/2000","html/73.htm","255","2"));
add(new page("Editorial","html/73_1.htm","255","3"));
add(new page("Terminkalender","html/73_2.htm","255","3"));
add(new page("Neuigkeiten","html/73_3.htm","255","3"));
add(new page("Veränderungen im Mitgliederkreis","html/73_4.htm","255","3"));
add(new page("Vorstellung: Richard-Gottschalk-Stiftung","html/73_5.htm","255","3"));
add(new page("Vorstellung: Institut für Steuerungstechnik der Werkzeugmaschinen und Fertigungseinrichtungen (ISW)","html/73_6.htm","255","3"));
add(new page("Erfahrungsbericht: 1 Jahr MSc-Studiengang „Information Technology“ (INFOTECH) an der Universität Stuttgart","html/73_7.htm","255","3"));
add(new page("Impressum","html/73_8.htm","255","3"));
add(new page("1. Ausgabe/2000 PDF","plugins/72.pdf","255","2"));
add(new page("letze Seite","html/error.htm","255","1"))
}
// ralf 2.0 compatibility
var this_site = new aip();
this_site = site;
//-->