/* Copyright 2005 Brecht Neyrinck.
This script is distributed under the terms of the GNU General Public License. */

//*******//
//TG-code//
//*******//

TGcodeArray = new Array();
	TGcodeArray[0]= ['b','<b>','</b>'];
	TGcodeArray[1]= ['u','<u>','</u>'];
	TGcodeArray[2]= ['i','<i>','</i>'];
	TGcodeArray[3]= ['img','<img src="','">'];
	TGcodeArray[4]= ['quote','<br><div class="quote"><i>QUOTE:</i><br>','</div>'];
	TGcodeArray[5]= ['code','<br>CODE:<br><div class="code">','</div><br>'];
	TGcodeArray[6]= ['list','<ul>','</ul>'];
	TGcodeArray[7]= ['\\*','<li>','</li>'];
	TGcodeArray[8]= ['center','<div align="center">','</div>'];
	
TGcodeArray2 = new Array();
	TGcodeArray2[0]= ['url','<a href="','" target="_blank">','</a>'];
	TGcodeArray2[1]= ['email','<a href="mailto:','">','</a>'];
	TGcodeArray2[2]= ['font','<span style="font-family:',';">','</span>'];
	TGcodeArray2[3]= ['color','<span style="color:',';">','</span>'];
	TGcodeArray2[4]= ['size','<span style="font-size:',';">','</span>'];
	

