<!--
	function writeImg(inImg)
	{
		document.getElementById('bodyEsp').value = document.getElementById('bodyEsp').value + inImg;
		tinyMCE.updateContent('bodyEsp');
		document.getElementById('bodyEng').value = document.getElementById('bodyEng').value + inImg;
		tinyMCE.updateContent('bodyEng');
		document.getElementById('bodyFra').value = document.getElementById('bodyFra').value + inImg;
		tinyMCE.updateContent('bodyFra');
	}

	function erase(inText, inLocation)
	{
		if (confirm(inText))
			document.location = inLocation;
	}

	function selectCheck(inForm) {
		for (count = 0; count < document.getElementById(inForm).elements.length; count++)
			document.getElementById(inForm).elements[count].checked = !document.getElementById(inForm).elements[count].checked;
	}

	function showOneDiv(inId) {
		document.getElementById(inId).style.display = 'block';
	}

	function hiddenOneDiv(inId) {
		document.getElementById(inId).style.display = 'none';
	}

	function showDiv(inId) {
		if (document.getElementById(inId).style.display == 'none')
			document.getElementById(inId).style.display = 'block';
		else
			document.getElementById(inId).style.display = 'none';
	}

	function loadXMLDoc(url, inFinalFunction, inBackPlain) {
		if (window.XMLHttpRequest) {
			req = new XMLHttpRequest();
			req.onreadystatechange = inFinalFunction;
			req.open("GET", url, inBackPlain);
			req.send(null);
		} else if (window.ActiveXObject) {
			req = new ActiveXObject("Microsoft.XMLHTTP");
			if (req) {
				req.onreadystatechange = inFinalFunction;
				req.open("GET", url, inBackPlain);
				req.send();
			}
		}

		return req;
	}

-->
