function majHtml(){

   if(window.opener.document.getElementById('foo')){

	if(window.opener.document.all.BtnText.disabled == true){

		var sHtml = window.opener.foo.document.body.innerHTML;

	}else{
		var sHtml = window.opener.foo.document.body.innerText;

		sHtml = sHtml.replace (/<SITEASY--EDITOR--HTML>/g, '');
		sHtml = sHtml.replace (/<\/SITEASY>/g, '');
	}
	
	var winNameId = window.opener.winName;


		if(winNameId == 'topEdit'){

			document.getElementById('topText').innerHTML = sHtml;


		}else if(winNameId == 'bottomEdit'){

			document.getElementById('bottomText').innerHTML = sHtml;

		}else{

			document.getElementById('pageText').innerHTML = sHtml;


		}

   }

}
