	// <!--
		function popupLegal()
		{
			window.open(
				'legal.html',
				'legal',
				'width=750,height=700,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes'
			);
		}

		function addBookmark()
		{
			window.external.AddFavorite('service', 'Die Betreuung Ihrer Schweden-Immobilie');
		}

		function popUpZoom(zoomPic, w, h)
		{
			sW = screen.width;
			sH = screen.height;
			// get left and top padding
			xPos = (sW - w) / 2;
			yPos = (sH - h) / 2;
			popUp = window.open(
				zoomPic,
				'name',
				'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,InnerWidth=' + w + ',InnerHeight=' + h + ',left=' + xPos + ',top=' + yPos
			);
			if (window.focus) { popUp.focus(); }
		}
		
		function printDateTime()
		{
			var now = new Date()
			var y = now.getFullYear()
			var d = now.getDate()
			var M = now.getMonth() + 1
			var h = now.getHours()
			var m = now.getMinutes()
			var dtStr = ""
			if (y < 1900) y += 1900;
			if (d < 10) dtStr = "0";
			dtStr = dtStr + d + ".";
			if (M < 10) dtStr = dtStr + "0";
			dtStr = dtStr + M + "." + y + " - ";
			if (h < 10) dtStr = dtStr + "0";
			dtStr = dtStr + h + ":";
			if (m < 10) dtStr = dtStr + "0";
			dtStr = dtStr + m;
			document.write(dtStr);
		}
		
		function printCopyright()
		{
			var now = new Date()
			document.write("&copy;2005-" + now.getFullYear());
		}
		
	//-->

