function dixerit_copypaste() {
	var dixtext = "";
	if (document.getSelection) {
		dixtext = document.getSelection();
	} else if (document.all) {
		dixtext = document.selection.createRange().text;
	} else if (window.getSelection) {
		dixtext = window.getSelection();
	}
	document.dixerit_form.dixtext.value = dixtext;
	if (!document.dixerit_form.url.value) {
		if (window.location.href) {
			document.dixerit_form.url.value = window.location.href;
		} else if (document.location.href) {
			document.dixerit_form.url.value = document.location.href;
		}
	}
}
function dixerit_copyselected() {
	setTimeout(dixerit_copypaste, 50);
	return true;
}
document.onmouseup = dixerit_copyselected;
document.onkeyup = dixerit_copyselected;
