<!--
function addSmile(smile){
smi= ' ' + smile;
document.bottomform.mesaga.value = document.bottomform.mesaga.value + smi;
  document.bottomform.mesaga.focus();
}
function smena(naim){
	if (naim=='email') {
		document.bottomform.email.style.backgroundColor=('#CCCCCC');
		document.bottomform.email.style.color=('#333333');
	}
	if (naim=='name') {
		document.bottomform.name.style.backgroundColor=('#CCCCCC');
		document.bottomform.name.style.color=('#333333');
	}
	if (naim=='mesaga') {
		document.bottomform.mesaga.style.backgroundColor=('#CCCCCC');
		document.bottomform.mesaga.style.color=('#333333');
	}			
	
}
function off(naim){
	if (naim=='email') {
		document.bottomform.email.style.backgroundColor=('#999999');
		document.bottomform.email.style.color=('white');
	}
	if (naim=='name') {
		document.bottomform.name.style.backgroundColor=('#999999');
		document.bottomform.name.style.color=('white');
	}
	if (naim=='mesaga') {
		document.bottomform.mesaga.style.backgroundColor=('#999999');
		document.bottomform.mesaga.style.color=('white');
	}			
	
}
//-->
