function highlight(field)
{
	field.focus();
	field.select();
}

function formatforforum(raw, filename, size)
{
	thelink = document.getElementById('url_link');

	if (thelink.value == raw)
	{
		thelink.value = '[i][b]Attached file:[/b] [url=' + raw + ']' + filename + '[/url] (' + size + ')[/i]';
	}
	else
	{
		thelink.value = raw;
	}
}

