<!--
	/* some arrays */
	Name = new Array();
	active = new Array();
	inactive = new Array();
	
	NumberOfButtons = 3;
	for (Counter = 1; Counter <= NumberOfButtons; Counter++)
	{	/* name of buttons */
		Name[Counter] = "tl" + Counter;
	
		/* init arrays */
		inactive[Counter] = new Image();
		inactive[Counter].src = "pics/" + Name[Counter] + "-0.gif";
		active[Counter] = new Image();
		active[Counter].src = "pics/" + Name[Counter] + "-1.gif";
	}
	
	/* rollover */
	function SwapPicture(NUMBER,OBJECT)
	{	window.document.images[NUMBER].src = OBJECT.src;
	}

	function OpenWindow(theURL) {
		// Windows
		if (navigator.appVersion.indexOf('Win') != -1) {
			if (navigator.appName.indexOf('Netscape') != -1) {
				mailform_width  = 430;
				mailform_height = 500;
			} else {
				mailform_width  = 420;
				mailform_height = 473;
			}
		
		// kein Windows
		} else {
			if (navigator.appName.indexOf('Netscape') != -1) {
				mailform_width  = 430;
				mailform_height = 500;
			} else {
				mailform_width  = 420;
				mailform_height = 490;
			}
		}
		window.open(theURL,"mailform","width=" + mailform_width + ",height=" + mailform_height + ",location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0");
	}
//-->

