// Utility Javascript-File to collect useful functions for different tasks

// this function adds the smilies from the guestbook to the textarea
function AddText(text)
{
	if (document.form["tx_veguestbook_pi1[entry]"].createTextRange && document.form["tx_veguestbook_pi1[entry]"].caretPos)
	{      
		var caretPos = document.form["tx_veguestbook_pi1[entry]"].caretPos;      
		caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ?
		text + ' ' : text;
	}
	else document.form["tx_veguestbook_pi1[entry]"].value += text;  
}

// diese Funktion ist hinter dem +-Zeichen bei den Bildern zum vergrößern hinterlegt
function openPreviousLink(elem)
{
	elem.parentNode.getElementsByTagName('a')[0].onclick();
}

function doNothing()
{
	// do nothing
}