function copyTextToClipboard(form, element)
{
	var textarea = document.forms[form].elements[element];
	textarea.focus();
	textarea.select();
}
