// JavaScript Document
function addTag(id, tag)
{
    if (document.getElementById(id).value.length > 1) {
		document.getElementById(id).value += ' ';
	}
    document.getElementById(id).value += tag;
}

