/***************************
	(C) 2002 by Charleshan www.Denninger.nl
	http://www.paranoid.demon.nl
	Free for all users, but leave in this header.
		Started:	11-11-2007
		Last change:	11-11-2007
	==========================
	Function:	InsertSmile = Translate txt 2 Smilies. - v1.0
	==========================
	v1.0	11-11-2007	Basic function.
****************************/

function InsertSmile(str_From,str_To) {
	document.getElementById(str_To).value+=str_From;
	document.getElementById(str_To).focus();
}
function ClearDefault(str_Element) {
	if (str_Element.defaultValue==str_Element.value) str_Element.value="";
}

