function short_message(contactId) {
	title = Math.ceil(Math.random() * 1000);
	var win1 = window.open('sms_popup.php?contact=' + contactId, 't' + title, "width=500,height=600,status=no,scrollbars=yes,resizable=no");
    win1.focus();

}
function smile(smiley)
{
	document.getElementById('text').value += (smiley + ' ');
	document.getElementById('text').focus();
}
