/*
  Add URL to textbox
*/

function AddURL(sURL) {
	var bIsAdd;
	var elmText = document.getElementById('urls1');
	if (!elmText) {
		elmText = document.getElementById('urls2');
		bIsAdd = true;
	}
	if (!elmText) return;
	if (bIsAdd && !AltDisplay(true)) return;
	var sText = elmText.value;
	sText = sText.replace(/(\x0D\x0A|\x0D|\x0A){2,}/g, "\n");
	sText = sText.replace(/(\x0D\x0A|\x0D|\x0A)$/, '');
	sText = (sText ? sText + "\n" : '') + sURL;
	elmText.value = sText;
	elmText.focus();
	return 1;
}

