function show_Code(obj){
	//process style
	//alert('processing style');
	theStyle = '<style>body { overflow-x: hidden; background-color:cccccc; font-family:Georgia,sans-serif; }body table { visibility: hidden;overflow: hidden;} body form { visibility: visible; display: block;} .comments { position: absolute !important; top: 0px !important; visibility:hidden; display:none; overflow: hidden; height: 0px;}.main table{visibility:visible;} .main { background-color:'+obj.getElementsByTagName('widgets')[0].getElementsByTagName('profile')[0].getAttribute('backgroundColor')+';width: 800px; height: auto; margin-left: -400px; position:absolute; left:50%; top:125px; z-index:1; visibility: visible;}';
	var dataArray = obj.getElementsByTagName('widgets')[0].childNodes;
	var dataArrayLen = dataArray.length;
	for (var i=0; i<dataArrayLen; i++){
		if(dataArray[i].tagName){
			var div = dataArray[i].tagName;
			if (dataArray[i].getAttribute('display') == "none"){
			} else{
				if (dataArray[i].getAttribute('backgroundUrl') == 'null' || dataArray[i].getAttribute('backgroundUrl') == ''){
				theStyle += "_#new#_."+div+"{position:absolute;left:"+dataArray[i].getAttribute('left')+";top:"+dataArray[i].getAttribute('top')+";height:"+dataArray[i].getAttribute('height')+";width:"+dataArray[i].getAttribute('width')+";border:"+dataArray[i].getAttribute('borderSize')+" "+dataArray[i].getAttribute('borderStyle')+";border-color:"+dataArray[i].getAttribute('borderColor')+";font-size:"+dataArray[i].getAttribute('fontSize')+";color:"+dataArray[i].getAttribute('fontColor')+";background-color:"+dataArray[i].getAttribute('backgroundColor')+";}";
				} else{
				theStyle += "_#new#_."+div+"{position:absolute;left:"+dataArray[i].getAttribute('left')+";top:"+dataArray[i].getAttribute('top')+";height:"+dataArray[i].getAttribute('height')+";width:"+dataArray[i].getAttribute('width')+";border:"+dataArray[i].getAttribute('borderSize')+" "+dataArray[i].getAttribute('borderStyle')+";border-color:"+dataArray[i].getAttribute('borderColor')+";font-size:"+dataArray[i].getAttribute('fontSize')+";color:"+dataArray[i].getAttribute('fontColor')+";background-color:"+dataArray[i].getAttribute('backgroundColor')+";background:url("+dataArray[i].getAttribute('backgroundUrl')+") "+dataArray[i].getAttribute('backgroundImgAlign')+" "+dataArray[i].getAttribute('backgroundImgRepeat')+";}";
				}
				theStyle += "_#new#_."+div+" p{font-family:"+dataArray[i].getAttribute('font')+";color:"+dataArray[i].getAttribute('fontColor')+";}";
				theStyle += "_#new#_."+div+" a{font-family:"+dataArray[i].getAttribute('font')+";color:"+dataArray[i].getAttribute('fontColor')+";}";
				theStyle += "_#new#_."+div+" h1{font-family:"+dataArray[i].getAttribute('font')+";color:"+dataArray[i].getAttribute('fontColor')+";}";
				theStyle += "_#new#_."+div+" h2{font-family:"+dataArray[i].getAttribute('font')+";color:"+dataArray[i].getAttribute('fontColor')+";}";
				theStyle += "_#new#_."+div+" h3{font-family:"+dataArray[i].getAttribute('font')+";color:"+dataArray[i].getAttribute('fontColor')+";}";
				theStyle += '_#new#_'+dataArray[i].getAttribute('misc');
			}
		}
	}
	var dataArray = obj.getElementsByTagName('links')[0].childNodes;
	var dataArrayLen = dataArray.length;
	for (var i=0; i<dataArrayLen; i++){
		if(dataArray[i].tagName){
			var id = dataArray[i].tagName;
			if (dataArray[i].getAttribute('display') == "none"){
			} else{
					theStyle += "_#new#_."+id+" a{color:"+dataArray[i].getAttribute('borderColor-hover')+";border-left:"+dataArray[i].getAttribute('borderLeft')+";border-right:"+dataArray[i].getAttribute('borderRight')+";border-color:"+dataArray[i].getAttribute('borderColor')+";background-color:"+dataArray[i].getAttribute('background')+";padding-left:"+dataArray[i].getAttribute('paddingLeft')+";padding-right:"+dataArray[i].getAttribute('paddingRight')+";}_#new#_."+id+" a:hover{border-color:"+dataArray[i].getAttribute('borderColor-hover')+";}";
				
			}
		}
	}
	theStyle += "</style>";
	theStyle = theStyle.replace(/.profile{position:absolute;left:;top:/g,".profile{");
	theStyle = theStyle.replace(/.profile{margin:20px auto/g,".profile{margin:0 auto");
	theStyle = theStyle.replace(/null/g,"");
	theStyle = theStyle.replace(/background:url() center no-repeat;/ig,"_");
	theStyle = theStyle.replace(/background:url() ;/ig,"");
	theStyle = theStyle.replace(/</g,"&lt;");
	theStyle = theStyle.replace(/>/g,"&gt;");
	theStyle = theStyle.replace(/_#new#_/g,"<br />");
	theStyle = theStyle.replace(/#/g,"");
	document.getElementById('aboutCodeBox').innerHTML = theStyle;
	//process code
	//alert('processing code');
	theCode = '<div class="main"><table cellpadding="0" cellspacing="0"><tr><td valign="top">_#new#_';
	var dataArray = obj.getElementsByTagName('widgets')[0].childNodes;
	var dataArrayLen = dataArray.length;
	text = obj.getElementsByTagName('text')[0];
	links = obj.getElementsByTagName('links')[0];
	images = obj.getElementsByTagName('images')[0];
	for (var i=0; i<dataArrayLen; i++){
		//profile
		if(dataArray[i].tagName == "profile" && dataArray[i].getAttribute('display') == "block"){
			theCode += '_#new#_<div class="profile">_#new#_';
		}
		//headerBox
		if(dataArray[i].tagName == "headerBox" && dataArray[i].getAttribute('display') == "block"){
			theCode += '<div class="headerBox">_#new#_<h1 style="text-align:center;">';
			theCode += fix_code(text.getElementsByTagName('heading')[0].getAttribute('text'));
			theCode += '</h1>_#new#_</div>'
		}
		//navBar
		if(dataArray[i].tagName == "navBar" && dataArray[i].getAttribute('display') == "block"){
			theCode += '_#new#_<div class="navBar">_#new#_<table align="center" border="0" cellspacing="0" cellpadding="0" style="padding:0;margin:0 auto;">_#new#_<tr>';
			if(links.getElementsByTagName('nav1')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="nav1"><a href="'+fix_code(links.getElementsByTagName('nav1')[0].getAttribute('url'))+'">'+links.getElementsByTagName('nav1')[0].getAttribute('text')+'</a></td>';
			}
			if(links.getElementsByTagName('nav2')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="nav2"><a href="'+fix_code(links.getElementsByTagName('nav2')[0].getAttribute('url'))+'">'+links.getElementsByTagName('nav2')[0].getAttribute('text')+'</a></td>';
			}
			if(links.getElementsByTagName('nav3')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="nav3"><a href="'+fix_code(links.getElementsByTagName('nav3')[0].getAttribute('url'))+'">'+links.getElementsByTagName('nav3')[0].getAttribute('text')+'</a></td>';
			}
			if(links.getElementsByTagName('nav4')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="nav4"><a href="'+fix_code(links.getElementsByTagName('nav4')[0].getAttribute('url'))+'">'+links.getElementsByTagName('nav4')[0].getAttribute('text')+'</a></td>';
			}
			if(links.getElementsByTagName('nav5')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="nav5"><a href="'+fix_code(links.getElementsByTagName('nav5')[0].getAttribute('url'))+'">'+links.getElementsByTagName('nav5')[0].getAttribute('text')+'</a></td>';
			}
			if(links.getElementsByTagName('nav6')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="nav6"><a href="'+fix_code(links.getElementsByTagName('nav6')[0].getAttribute('url'))+'">'+links.getElementsByTagName('nav6')[0].getAttribute('text')+'</a></td>';
			}
			if(links.getElementsByTagName('nav7')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="nav7"><a href="'+fix_code(links.getElementsByTagName('nav7')[0].getAttribute('url'))+'">'+links.getElementsByTagName('nav7')[0].getAttribute('text')+'</a></td>';
			}
			if(links.getElementsByTagName('nav8')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="nav8"><a href="'+fix_code(links.getElementsByTagName('nav8')[0].getAttribute('url'))+'">'+links.getElementsByTagName('nav8')[0].getAttribute('text')+'</a></td>';
			}
			if(links.getElementsByTagName('nav9')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="nav9"><a href="'+fix_code(links.getElementsByTagName('nav9')[0].getAttribute('url'))+'">'+links.getElementsByTagName('nav9')[0].getAttribute('text')+'</a></td>';
			}
			if(links.getElementsByTagName('nav10')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="nav10"><a href="'+fix_code(links.getElementsByTagName('nav10')[0].getAttribute('url'))+'">'+links.getElementsByTagName('nav10')[0].getAttribute('text')+'</a></td>';
			}
			theCode += '_#new#_</tr>_#new#_</table>_#new#_</div>';
		}
		//youBox
		if(dataArray[i].tagName == "youBox" && dataArray[i].getAttribute('display') == "block"){
			theCode += '_#new#_<div class="youBox">_#new#_<table width="99%" border="0" cellspacing="1" cellpadding="0">_#new#_<tr>_#new#_<td colspan="2"><h2>';
			theCode += fix_code(text.getElementsByTagName('displayName')[0].getAttribute('text'));
			theCode += '</h2></td>_#new#_</tr>_#new#_<tr>_#new#_<td width="50%" rowspan="5" align="center" valign="middle">'
			if(images.getElementsByTagName('youImage')[0].getAttribute('display') == 'block'){
				theCode += '<a href="'+fix_code(images.getElementsByTagName('youImage')[0].getAttribute('url'))+'" title="'+fix_code(images.getElementsByTagName('youImage')[0].getAttribute('alt'))+'"><img src="'+fix_code(images.getElementsByTagName('youImage')[0].getAttribute('source'))+'" height="'+images.getElementsByTagName('youImage')[0].getAttribute('height')+'" width="'+images.getElementsByTagName('youImage')[0].getAttribute('width')+'" /></a>';
			}
			theCode += '</td>_#new#_<td align="right"><p style="font-weight:bold;">';
			theCode += fix_code(text.getElementsByTagName('quote')[0].getAttribute('text'))+'</p></td></tr><tr><td></td></tr><tr><td align="right"><p>'+fix_code(text.getElementsByTagName('sex')[0].getAttribute('text'))+'</p></td>_#new#_</tr>_#new#_<tr>_#new#_<td align="right"><p>'+fix_code(text.getElementsByTagName('age')[0].getAttribute('text'))+'</p></td>_#new#_</tr>_#new#_<tr>_#new#_<td valign="bottom" align="right" style="padding-bottom:5px;"><p>'+fix_code(text.getElementsByTagName('location')[0].getAttribute('text'))+'</p></td>_#new#_</tr>_#new#_</table>_#new#_</div>';	
		}
		//textBox
		if(dataArray[i].tagName == "textBox" && dataArray[i].getAttribute('display') == "block"){
			theCode += '_#new#_<div class="textBox">_#new#_<h2>'+fix_code(text.getElementsByTagName('textBox_heading')[0].getAttribute('text'))+'</h2>_#new#_<h3>'+fix_code(text.getElementsByTagName('textBox_subheading1')[0].getAttribute('text'))+'</h3>_#new#_<p>'+fix_code(text.getElementsByTagName('textBox_textarea1')[0].getAttribute('text'))+'</p>_#new#_<h3>'+fix_code(text.getElementsByTagName('textBox_subheading2')[0].getAttribute('text'))+'</h3>_#new#_<p>'+fix_code(text.getElementsByTagName('textBox_textarea2')[0].getAttribute('text'))+'</p>_#new#_</div>';
		}
		//contactBox
		if(dataArray[i].tagName == "contactBox" && dataArray[i].getAttribute('display') == "block"){
			theCode += '<div class="contactBox">_#new#_<h2>'+fix_code(text.getElementsByTagName('contactBox_heading')[0].getAttribute('text'))+'</h2>_#new#_<table align="center" width="100%" border="0" cellpadding="0" cellspacing="0">_#new#_<tr>'
			if(links.getElementsByTagName('contact1')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="contact1" width="50%"><a href="'+fix_code(links.getElementsByTagName('contact1')[0].getAttribute('url'))+'">'+links.getElementsByTagName('contact1')[0].getAttribute('text')+'</a></td>';
			}
			if(links.getElementsByTagName('contact2')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="contact2" width="50%"><a href="'+fix_code(links.getElementsByTagName('contact2')[0].getAttribute('url'))+'">'+links.getElementsByTagName('contact2')[0].getAttribute('text')+'</a></td>';
			}
			theCode += '_#new#_</tr>_#new#_<tr>'
			if(links.getElementsByTagName('contact3')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="contact3" width="50%"><a href="'+fix_code(links.getElementsByTagName('contact3')[0].getAttribute('url'))+'">'+links.getElementsByTagName('contact3')[0].getAttribute('text')+'</a></td>';
			}
			if(links.getElementsByTagName('contact4')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="contact4" width="50%"><a href="'+fix_code(links.getElementsByTagName('contact4')[0].getAttribute('url'))+'">'+links.getElementsByTagName('contact4')[0].getAttribute('text')+'</a></td>';
			}
			theCode += '_#new#_</tr>_#new#_<tr>'
			if(links.getElementsByTagName('contact5')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="contact5" width="50%"><a href="'+fix_code(links.getElementsByTagName('contact5')[0].getAttribute('url'))+'">'+links.getElementsByTagName('contact5')[0].getAttribute('text')+'</a></td>';
			}
			if(links.getElementsByTagName('contact6')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="contact6" width="50%"><a href="'+fix_code(links.getElementsByTagName('contact6')[0].getAttribute('url'))+'">'+links.getElementsByTagName('contact6')[0].getAttribute('text')+'</a></td>';
			}
			theCode += '_#new#_</tr>_#new#_</table>_#new#_</div>'
		}
		//calender
		if(dataArray[i].tagName == "calender" && dataArray[i].getAttribute('display') == "block"){
			theCode += '_#new#_<div class="calender">_#new#_<h2>'+fix_code(text.getElementsByTagName('calender_heading')[0].getAttribute('text'))+'</h2>_#new#_<table align="center" width="100%" border="0" cellpadding="0" cellspacing="0">_#new#_<tr>_#new#_<td>'+document.getElementById('calender_html').innerHTML+'</td>_#new#_</tr>_#new#_<tr>';
			if(links.getElementsByTagName('calender1')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td align="center" class="calender1"><a href="'+fix_code(links.getElementsByTagName('calender1')[0].getAttribute('url'))+'">'+links.getElementsByTagName('calender1')[0].getAttribute('text')+'</a></td>';
			}
			theCode += '_#new#_</tr>_#new#_</table>_#new#_</div>';
		}
		//musicBox
		if(dataArray[i].tagName == "musicBox" && dataArray[i].getAttribute('display') == "block"){
			theCode += '_#new#_<div class="musicBox">_#new#_<table align="center" width="100%" border="0" cellpadding="0" cellspacing="0">_#new#_<tr>_#new#_<td align="center">'+document.getElementById('musicBox_html').innerHTML+'</td>_#new#_</tr>_#new#_</table>_#new#_</div>';
		}
		//pictureBox
		if(dataArray[i].tagName == "pictureBox" && dataArray[i].getAttribute('display') == "block"){
			theCode += '_#new#_<div class="pictureBox">_#new#_<h2>'+fix_code(text.getElementsByTagName('pictureBox_heading')[0].getAttribute('text'))+'</h2>_#new#_<table align="center" width="100%" border="0" cellpadding="0" cellspacing="0">_#new#_<tr>_#new#_<td align="center">'+document.getElementById('flickr_html').innerHTML+'</td>_#new#_</tr>_#new#_</table>_#new#_</div>';
		}
		//rssBox
		if(dataArray[i].tagName == "rssBox" && dataArray[i].getAttribute('display') == "block"){
			theCode += '<div class="rssBox">_#new#_<h2>'+fix_code(text.getElementsByTagName('rssBox_heading')[0].getAttribute('text'))+'</h2>_#new#_<table align="center" width="100%" border="0" cellpadding="0" cellspacing="0">_#new#_<tr>_#new#_<td>'+document.getElementById('rssBox_html').innerHTML+'</td>_#new#_</tr>_#new#_</table>_#new#_</div>';
		}
		//friendArea
		if(dataArray[i].tagName == "friendArea" && dataArray[i].getAttribute('display') == "block"){
			theCode += '_#new#_<div class="friendArea"><h2>'+fix_code(text.getElementsByTagName('friendArea_heading')[0].getAttribute('text'))+'</h2>_#new#_<table align="center" width="100%" border="0" cellspacing="0" cellpadding="0">_#new#_<tr>';
			if(images.getElementsByTagName('friend1')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td><a href="'+fix_code(images.getElementsByTagName('friend1')[0].getAttribute('url'))+'" title="'+fix_code(images.getElementsByTagName('friend1')[0].getAttribute('alt'))+'"><img src="'+fix_code(images.getElementsByTagName('friend1')[0].getAttribute('source'))+'" height="'+images.getElementsByTagName('friend1')[0].getAttribute('height')+'" width="'+images.getElementsByTagName('friend1')[0].getAttribute('width')+'" /></a></td>';
			}
			if(images.getElementsByTagName('friend2')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td><a href="'+fix_code(images.getElementsByTagName('friend2')[0].getAttribute('url'))+'" title="'+fix_code(images.getElementsByTagName('friend2')[0].getAttribute('alt'))+'"><img src="'+fix_code(images.getElementsByTagName('friend2')[0].getAttribute('source'))+'" height="'+images.getElementsByTagName('friend2')[0].getAttribute('height')+'" width="'+images.getElementsByTagName('friend2')[0].getAttribute('width')+'" /></a></td>';
			}
			if(images.getElementsByTagName('friend3')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td><a href="'+fix_code(images.getElementsByTagName('friend3')[0].getAttribute('url'))+'" title="'+fix_code(images.getElementsByTagName('friend3')[0].getAttribute('alt'))+'"><img src="'+fix_code(images.getElementsByTagName('friend3')[0].getAttribute('source'))+'" height="'+images.getElementsByTagName('friend3')[0].getAttribute('height')+'" width="'+images.getElementsByTagName('friend3')[0].getAttribute('width')+'" /></a></td>';
			}
			theCode +='_#new#_</tr>_#new#_<tr>';
			if(images.getElementsByTagName('friend4')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td><a href="'+fix_code(images.getElementsByTagName('friend4')[0].getAttribute('url'))+'" title="'+fix_code(images.getElementsByTagName('friend4')[0].getAttribute('alt'))+'"><img src="'+fix_code(images.getElementsByTagName('friend4')[0].getAttribute('source'))+'" height="'+images.getElementsByTagName('friend4')[0].getAttribute('height')+'" width="'+images.getElementsByTagName('friend4')[0].getAttribute('width')+'" /></a></td>';
			}
			if(images.getElementsByTagName('friend5')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td><a href="'+fix_code(images.getElementsByTagName('friend5')[0].getAttribute('url'))+'" title="'+fix_code(images.getElementsByTagName('friend5')[0].getAttribute('alt'))+'"><img src="'+fix_code(images.getElementsByTagName('friend5')[0].getAttribute('source'))+'" height="'+images.getElementsByTagName('friend5')[0].getAttribute('height')+'" width="'+images.getElementsByTagName('friend5')[0].getAttribute('width')+'" /></a></td>';
			}
			if(images.getElementsByTagName('friend6')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td><a href="'+fix_code(images.getElementsByTagName('friend6')[0].getAttribute('url'))+'" title="'+fix_code(images.getElementsByTagName('friend6')[0].getAttribute('alt'))+'"><img src="'+fix_code(images.getElementsByTagName('friend6')[0].getAttribute('source'))+'" height="'+images.getElementsByTagName('friend6')[0].getAttribute('height')+'" width="'+images.getElementsByTagName('friend6')[0].getAttribute('width')+'" /></a></td>';
			}
			theCode += '_#new#_</tr>_#new#_<tr>';
			if(images.getElementsByTagName('friend7')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td><a href="'+fix_code(images.getElementsByTagName('friend7')[0].getAttribute('url'))+'" title="'+fix_code(images.getElementsByTagName('friend7')[0].getAttribute('alt'))+'"><img src="'+fix_code(images.getElementsByTagName('friend7')[0].getAttribute('source'))+'" height="'+images.getElementsByTagName('friend7')[0].getAttribute('height')+'" width="'+images.getElementsByTagName('friend7')[0].getAttribute('width')+'" /></a></td>';
			}
			if(images.getElementsByTagName('friend8')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td><a href="'+fix_code(images.getElementsByTagName('friend8')[0].getAttribute('url'))+'" title="'+fix_code(images.getElementsByTagName('friend8')[0].getAttribute('alt'))+'"><img src="'+fix_code(images.getElementsByTagName('friend8')[0].getAttribute('source'))+'" height="'+images.getElementsByTagName('friend8')[0].getAttribute('height')+'" width="'+images.getElementsByTagName('friend8')[0].getAttribute('width')+'" /></a></td>';
			}
			if(images.getElementsByTagName('friend9')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td><a href="'+fix_code(images.getElementsByTagName('friend9')[0].getAttribute('url'))+'" title="'+fix_code(images.getElementsByTagName('friend9')[0].getAttribute('alt'))+'"><img src="'+fix_code(images.getElementsByTagName('friend9')[0].getAttribute('source'))+'" height="'+images.getElementsByTagName('friend9')[0].getAttribute('height')+'" width="'+images.getElementsByTagName('friend9')[0].getAttribute('width')+'" /></a></td>';
			}
			theCode += '_#new#_</tr>_#new#_<tr>';
			if(links.getElementsByTagName('showAllButton')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td class="showAllButton" colspan="3" align="center" valign="middle"><a href="'+fix_code(links.getElementsByTagName('showAllButton')[0].getAttribute('url'))+'">'+links.getElementsByTagName('showAllButton')[0].getAttribute('text')+'</a></td>';
			}
			theCode += '_#new#_</tr>_#new#_</table>_#new#_</div>';
		}
		//commentBox
		if(dataArray[i].tagName == "commentBox" && dataArray[i].getAttribute('display') == "block"){
			theCode += '_#new#_<div class="commentBox">_#new#_<h2>'+fix_code(text.getElementsByTagName('commentBox_heading')[0].getAttribute('text'))+'</h2>_#new#_<table align="center" width="100%" border="0" cellpadding="0" cellspacing="0">_#new#_<tr>_#new#_<td align="center">'+document.getElementById('commentBox_html').innerHTML+'</td>_#new#_</tr>_#new#_</table>_#new#_</div>';
		}
		//commentsArea
		if(dataArray[i].tagName == "commentsArea" && dataArray[i].getAttribute('display') == "block"){
			theCode += '_#new#_<div class="commentsArea">_#new#_<h2>'+fix_code(text.getElementsByTagName('commentsArea_heading')[0].getAttribute('text'))+'</h2>_#new#_<table align="center" width="100%" border="0" cellpadding="0" cellspacing="0">_#new#_<tr>_#new#_<td>'+document.getElementById('commentBox_html').innerHTML+'</td>_#new#_</tr>_#new#_<tr>';
			if(links.getElementsByTagName('comment1')[0].getAttribute('display') == 'block'){
				theCode += '_#new#_<td align="center" class="comment1"><a href="'+fix_code(links.getElementsByTagName('comment1')[0].getAttribute('url'))+'">'+links.getElementsByTagName('comment1')[0].getAttribute('text')+'</a></td>';
			}
			theCode += '_#new#_</tr>_#new#_</table>_#new#_</div>';
		}
	}
	theCode += '_#new#_</div>_#new#_</td></tr></table><div class="comments"><table><tr><td><table><tr><td><br />';
	theCode = theCode.replace(/</g,"&lt;");
	theCode = theCode.replace(/>/g,"&gt;");
	theCode = theCode.replace(/_#new#_/g,"<br />");
	document.getElementById('meetCodeBox').innerHTML = theCode;
}