//=======================================================================================================================
// (c)Knusperleicht
//=======================================================================================================================
//=====================>Für URL
function klonLink(klongb) 
{
linkText = prompt("Titel des Links:","");
linkUrl = prompt("Link der Homepage eingeben:","http://www.");
if ((linkUrl != null) && (linkUrl != "")) 
	{
	if ((linkText != null) && (linkText != ""))
		klongb.gbKommentar.value += "[url="+linkUrl+"]"+linkText+"[/url] ";
	}
klongb.gbKommentar.focus();
}
//=====================>Für Liste
function klonListe(klongb) 
{
linkListe = prompt("Listentext eingeben:","");
if ((linkListe != null) && (linkListe != "")) 
	{
	klongb.gbKommentar.value += "[ul][li]"+linkListe+"[/li][/ul] ";
	}
klongb.gbKommentar.focus();
}

//=========Farben
function gbcod(klongb,wert) 
{
 var gbcod= prompt("Fügen Sie den Text ein der formatiert werden soll:","");
 if ((gbcod != null) && (gbcod != ""))
 {
   document.klongb.gbKommentar.value += "["+wert+"]"+gbcod+"[/"+wert+"] ";
 }
 document.klongb.gbKommentar.focus();
}
//========Blinkfunktion
function doBlink() {
var blink = document.all.tags("BLINK")
for (var i=0; i < blink.length; i++)
blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : "" 
}
function startBlink() {
// Make sure it is IE4
if (document.all)
setInterval("doBlink()",1000)
}
window.onload = startBlink;
