﻿/* Datei jscript.js enthält die für die Webseiten nötigen JavaScript-Funktionen und Variablen */

var letzteAktualisierung = "29. November 2007";
var adresse = "Franz Kehlbach<br>Luisenstraße 127a<br>53129 Bonn";

function open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
    toolbar_str = toolbar ? 'yes' : 'no';
    menubar_str = menubar ? 'yes' : 'no';
    statusbar_str = statusbar ? 'yes' : 'no';
    scrollbar_str = scrollbar ? 'yes' : 'no';
    resizable_str = resizable ? 'yes' : 'no';
    window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}

function meine_adresse(my_address, my_button)
{
	var adresse_adresse = my_address;
	var adresse_button = my_button;
	document.write("<A HREF=\"javascript:open_window('meine_Adresse'," + adresse_adresse + ", 300, 225, 200, 150, 0, 0, 0, 0, 1)\" TARGET=\"_self\"><img src=\"" + adresse_button + "\" width=\"120\" height=\"36\" border=\"0\" alt=\"meine Adresse\"></A>");
}


