function Favorites(Seite,Titel)
{
    if ((navigator.appName == "Microsoft Internet Explorer") && 
          (parseInt(navigator.appVersion) >= 4))
    {
        var url=Seite //"http://www.goldengel.ch"
        var title=Titel //"+Goldengel - Zehnfingersystem"
        window.external.AddFavorite(url,title)
    }
    else
    {
        var FavText = Titel //"goldengel.ch"; 
        if(navigator.appName == "Netscape")
        {
           FavText += " mit den Tasten STRG+D.";
        }
        FavText += " zu den Favoriten hinzufügen";
        alert(FavText);
    }
}



<!-- Begin
function CountWords (this_field, show_word_count, show_char_count) {
	if (show_word_count == null) {
		show_word_count = true;
	}
	if (show_char_count == null) {
		show_char_count = false;
	}
	
	
	//	\n  Zeilenumbruch 
	//	\t  Tabulator 
	//	\f  Schreibmaschinen-Wagenrücklauf 
	//	\r  ebenfalls Schreibmaschinen-Wagenrücklauf 
	//	\b  Backspace 
	//	\"  Gänsefüßchen 
	//	\\  Backslash 

	
	var srcStr = this_field.value;				//Feld einlesen
	srcStr = srcStr.replace(/chr(10)/, " ");	//Richtig zählen
	srcStr = srcStr.replace(/chr(13)/, " ");	//Richtig zählen
	while (srcStr.search(/  /)>-1)
	{
		srcStr = srcStr.replace(/  /g, " ");	//Richtig zählen
	}
	srcStr = trim(srcStr)						//Fehler wenn möglich elimieren beim Zählen
	var char_count = srcStr.length;				//Zeichen zählen
	//var initial_whitespace_rExp = /^[^A-Za-z0-9]+/gi;
	//var left_trimmedStr = fullStr.replace(initial_whitespace_rExp, "");
	//var non_alphanumerics_rExp = rExp = /[^A-Za-z0-9]+/gi;
	//var cleanedStr = left_trimmedStr.replace(non_alphanumerics_rExp, " ");
	var splitString = srcStr.split(" ");	//Array erstellen
	var word_count = splitString.length;
	if (srcStr.length <2) {
		word_count = 0;
	}
	
	if (word_count == 1) {
		wordOrWords = " Wort";
	}
	else {
		wordOrWords = " Wörter";
	}
	
	if (char_count == 1) {
		charOrChars = " Zeichen";
	} else {
		charOrChars = " Zeichen";
	}
	
	if (show_word_count & show_char_count) {
		window.document.mainform.eingabewoerter.value = (word_count + wordOrWords);
		window.document.mainform.eingabezeichen.value = (char_count + charOrChars);
	}
	else {
		if (show_word_count) {
			window.document.mainform.eingabewoerter.value = (word_count + wordOrWords);
		}
		else {
			if (show_char_count) {
			window.document.mainform.eingabezeichen.value = (char_count + charOrChars);
	      }
	   }
	}
	return word_count;
}
//  End -->



function trim(stringToTrim) {
	return stringToTrim.replace(/^\s+|\s+$/g,"");
}