<!--
function CopySignature(id) {

document.getElementById("Signature").value = document.getElementById(id).firstChild.nodeValue;
}

function CopyEditedSignature(id) {

document.getElementById("signature_edited").value = document.getElementById(id).firstChild.nodeValue;
}

function CopyEditedSignatureB(id) {

document.getElementById("signature_editedb").value = document.getElementById(id).firstChild.nodeValue;
}

function XXComposeValidation() {
	var output = '';
	if (document.getElementById('ItemHeadline').value=='') output = output + 'No Item Headline\n';
	if (document.getElementById('cat1').value=='') output = output + 'No Category\n';
	if (document.getElementById('ItemPreview').value=='')	output = output + 'No Item Preview\n';	
//	if (document.getElementById('ItemBody').value=='') output = output + 'Item Body\n';	
//	if ((document.getElementById('FCK_text').value=='') && (document.getElementById('plain_text').value=='')) output = output + 'No Text\n';	
	if (output=='') return true;
	alert(output);
	return false;
}
-->