function Ti1(Tag2Place) {
	document.getElementById('ctext').value+=Tag2Place;
}
function showEmail(source) {
	EmailWindow=window.open('','Email','height=65,width=300');
	Chars1 = new Array("a","b","c","d","e","f","g","h","i","l","m","","n","o","p","r","s","t","u","v","w","x","y","z","@",".");
	Chars2 = new Array("I0","I1","I2","I3","I4","I5","I6","I7","I8","IA","IB","IC","ID","IE","IF","L0","L1","L2","L3","L4","L5","L6","L7","L8","L9","LC");
	EmailWindow.document.write("<div style='padding: 10px; margin: -10px; font-family: Courier New, monospace; font-size: 12px; background-color: #EEEEEE'>");
	StringSource=source.split('=');
	var retunr='';
	for(var i = 0; i < StringSource.length; i++) {
		for(var b = 0; b < Chars2.length; b++) {
			if(StringSource[i]==Chars2[b]) {
				retunr+=Chars1[b];
			} else {

			}
		}
	}
	EmailWindow.document.write('Email: <a href="mailto:'+retunr+'">'+retunr+'</a>');
	EmailWindow.document.write('<br><button style="float: right; margin-top: 15px;" onclick="window.close()">Close</button></div>');
}
