// JavaScript Document
var xmlHttp;

cur_page = '';
data_arr = Array();
lang = 'EN';

_img = '';
/*
function setContent(_page, tab_link) { 
	cur_page = _page;
	_index = -1;	
	xmlHttp = GetXmlHttpObject();
	if (xmlHttp == null) {
		 alert ("Browser does not support HTTP Request");
		 return;
	}
	var url = "getContent.php";
	url = url + "?tab=" + _page + "&tab_link=" + tab_link;
	url = url + "&sid=" + Math.random();
	xmlHttp.onreadystatechange = stateChanged;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}

function stateChanged() { 


	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){ 

		link_content = xmlHttp.responseText;
		*/
var default_content = false;		
function setContent(_page, tab_link) { 

	if(_page == 'contact') {
		showContactPage();	
	} 
	 else {

		link_content = getContent(_page, tab_link);

		data_arr = link_content.split("__C__");
		lnk_img_str = data_arr[0];
		l_img_arr = lnk_img_str.split('_IMG_');

		_img = l_img_arr[0];
		link_str = l_img_arr[1]; //getPageLinks(_page);
		link_arr = link_str.split("__L__");
		content = data_arr[1];

		bt = document.getElementById('button_tbl');
		if(link_arr.length > 0) {
			for(i = bt.rows.length-1; i >= 0; i--)
				bt.deleteRow(i);
				
			if(navigator.appName.indexOf('Microsoft') > -1) {
				for(i=0;i<link_arr.length;i++) {
					if(link_arr[i].length > 2) {
						var row = bt.insertRow();
						var cell = row.insertCell();
						cell.setAttribute('valign', 'top');
						cell.setAttribute('style', '1px solid #fff');
						cell.style.background = '#0070B8';
						cell.style.border = '1px solid #003399';
						cell.style.paddingTop = '2px';
						cell.innerHTML = '<span style="position:relative;left:1px;top:-1px;"><a href=\'javascript:setLinkContent(\"' + cur_tab + '\", \"' + 
						 link_arr[i] + '\")\' style="color:#fff; text-decoration:none; font-weight: normal; font-size:12px;">' +
										 link_arr[i] + '</a></span>';
					}
				}
			}
			else {
				document.getElementById("button_tbl").innerHTML = '';
				for(i=0;i<link_arr.length;i++) {
					if(link_arr[i].length > 2)
						document.getElementById("button_tbl").innerHTML += "<tr><td valign='top' style='background: #0070B8;border:1px solid #003399;margin-top:22px;'>" +
						  "<a href='javascript:setLinkContent(\"" + cur_tab + "\", \"" + link_arr[i] + "\")' style='color:#fff;text-decoration:none;font-weight:normal;font-size:12px;' onclick='this.blur();'>" + link_arr[i] + "</a></td></tr>";
				}
			}
		}

		str_data = '';
		if(getDefaultContent(_page).length > 0 ) { //&& getDefaultContent(_page).indexOf(LANG_NOT_SUPPORTED) == -1) {
			content = getDefaultContent(_page);
		}
//		alert(__content);
		if(content.indexOf('_><_') > -1)
			data_arr = content.split("_><_");

//		if(link_arr.length > 1)
//			showLinkContent(link_arr[0]);
//		else	
		_index = -1;
		showNext_View();
   } 
}


function getDefaultContent(page) {
	var LANG_NOT_SUPPORTED = '<p></p><p><span style="font-size:14px;margin-top:20px;">'; 
	if(lang == 'en')
		LANG_NOT_SUPPORTED += 'Sorry, this section is not available in <b>English</b> language</p>' +
							'<p><span style="font-size:14px;margin-top:20px;">Sorry, dit gedeelte is niet beschikbaar in het Engels</span></p>';
	else if(lang == 'nl')	
		LANG_NOT_SUPPORTED += 'Sorry, this section is not available in <b>Dutch</b> language</p>' +
			'<p><span style="font-size:14px;margin-top:20px;">Sorry, dit gedeelte is niet beschikbaar in de <b>Nederlandse</b> taal</span></p>';
	
	LANG_NOT_SUPPORTED += '_><_';
	
	default_content = '';
	
	if(document.getElementById(page + '_default_content_' + lang))
		default_content = document.getElementById(page + '_default_content_' + lang).value;

	if(default_content == 'na' || default_content == '')
		default_content = LANG_NOT_SUPPORTED;

	return default_content;
}

function getContent(page, tab_link) {
	if(page == 'home') {
		home_link_str = document.getElementById('home_link_content_' + lang).value;
		home_content_str = document.getElementById('home_content_' + lang).value;
		home_arr = home_content_str.split('__E__');
		content_str = home_arr[0];
		
		return content_str;
	}
	if(page == 'about_us') {
		about_us_link_str = document.getElementById('about_us_link_content_' + lang).value;
		about_us_content_str = document.getElementById('about_us_content_' + lang).value;
		about_us_arr = about_us_content_str.split('__E__');
		content_str = about_us_arr[0];
		
		return content_str;
	}
	if(page == 'service') {
		service_link_str = document.getElementById('service_link_content_' + lang).value;
		service_content_str = document.getElementById('service_content_' + lang).value;		
		service_arr = service_content_str.split('__E__');
		content_str = service_arr[0];
		
		return content_str;
	}
	if(page == 'training') {
		training_link_str = document.getElementById('training_link_content_' + lang).value;
		training_content_str = document.getElementById('training_content_' + lang).value;		
		training_arr = training_content_str.split('__E__');
		content_str = training_arr[0];
		
		return content_str;
	}
}

function getPageLinks(page) {

	link_str = '';
	if(page == 'home') 
		link_str = document.getElementById('home_links_' + lang).value;
	
	if(page == 'about_us') 
		link_str = document.getElementById('about_us_links_' + lang).value;

	if(page == 'service') 
		link_str = document.getElementById('service_links_' + lang).value;
	
	return link_str;
}

function setLinkContent(page, tab_link) {
	data_arr = getLinkContent(page, tab_link).split('_><_');
	_index = -1;
	showNext_View();
}

function getLinkContent(page, tab_link) {
	if(page == 'home') {
		home_link_str = document.getElementById('home_links_' + lang).value;
		link_content_str = document.getElementById('home_link_content_' + lang).value;
		arr = link_content_str.split('__E__');
		link_content = '';
		link_found = false;
		for(i=0;i<arr.length;i++) {
			srch_L = 'L_START_' + tab_link + '_L_END';
			if(arr[i].indexOf(srch_L) > -1) {
				link_content = arr[i].substr(arr[i].indexOf('__C__')+5, arr[i].length);	
				break;
			}
		}
		return link_content;
	}
	if(page == 'about_us') {
		about_us_link_str = document.getElementById('about_us_links_' + lang).value;
		link_content_str = document.getElementById('about_us_link_content_' + lang).value;
		arr = link_content_str.split('__E__');
		link_content = '';
		link_found = false;
		for(i=0;i<arr.length;i++) {
			srch_L = 'L_START_' + tab_link + '_L_END';
			if(arr[i].indexOf(srch_L) > -1) {
				link_content = arr[i].substr(arr[i].indexOf('__C__')+5, arr[i].length);	
				break;
			}
		}
		return link_content;
	}
	if(page == 'service') {
		service_link_str = document.getElementById('service_links_' + lang).value;
		link_content_str = document.getElementById('service_link_content_' + lang).value;
		arr = link_content_str.split('__E__');
		link_content = '';
		link_found = false;
		for(i=0;i<arr.length;i++) {
			srch_L = 'L_START_' + tab_link + '_L_END';
			if(arr[i].indexOf(srch_L) > -1) {
				link_content = arr[i].substr(arr[i].indexOf('__C__')+5, arr[i].length);	
				break;
			}
		}
		return link_content;
	}
	if(page == 'training') {
		training_link_str = document.getElementById('training_links_' + lang).value;
		link_content_str = document.getElementById('training_link_content_' + lang).value;
		arr = link_content_str.split('__E__');
		link_content = '';
		link_found = false;
		for(i=0;i<arr.length;i++) {
			srch_L = 'L_START_' + tab_link + '_L_END';
			if(arr[i].indexOf(srch_L) > -1) {
				link_content = arr[i].substr(arr[i].indexOf('__C__')+5, arr[i].length);	
				break;
			}
		}
		return link_content;
	}
}


link_data_next = false;
_index = -1;	
cur_img = '';
function showNext_View() {
	if(navigator.appName.indexOf('Microsoft') > -1) {
		if((_index + 1) < data_arr.length && data_arr[_index+1].length != 0) {
			++_index;
			t = document.getElementById("data_pnl");
			t.style.width = '470px';
			for(i=t.rows.length-1; i >= 0; i--)
				t.deleteRow(i);
				
			row = t.insertRow(0);
			cell = row.insertCell(0);
			cell.setAttribute('align', 'left');
			cell.style.verticalAlign = 'top';
			cell.style.padding = '8px 5px 5px 2px';
			cell.setAttribute('width', '100%');
			cell.setAttribute('height', '130');
			cell.style.paddingLeft = '10px';
			new_content = data_arr[_index]; 
			while(new_content.indexOf("\\") > -1)
				new_content = new_content.replace("\\", '');
			cell.innerHTML = new_content; //data_arr[_index];

			l_data = '';	
			if(data_arr.length > 0) {
					row2 = t.insertRow(1);
					cell2 = row2.insertCell(0);
					cell2.style.colspan = '1';
					cell2.setAttribute('align', 'right');
					cell2.style.paddingRight = '10px';
						l_data += '<span style="position:relative;left:1px;top:-1px;padding-right:5px; padding-top:1px;">';
					
						if(_index > 0) {
							l_data +=	'<a id="read_more" href="javascript:setCurIndex('+ Number(_index-2) +'),showNext_View();" style="color:#fff;text-decoration:none;font-weight:normal;font-size:10px;"><< </a>';
						}
						
						if(data_arr.length > 2) {
							for(i=0;i<data_arr.length-1; i++) {
								l_data += '<span style="position:relative;left:1px;top:-1px;padding-right:5px; padding-top:1px;"><a id="read_more" href="javascript:setCurIndex('+Number(i-1)+'),showNext_View();" style="padding-left:3px;padding-right:3px;color:#fff;text-decoration:none;font-weight:normal;font-size:10px;';
						if(_index == Number(i))
							l_data += 'color:orange;';
							
						l_data += '">[ ' +	Number(i+1) + ' ]</a></span>';	
							}
						}
						if(_index+1 < data_arr.length-1 && data_arr[_index+1].length != 0) {
							l_data +=	'<a id="read_more" href="javascript:setCurIndex('+ Number(_index) +'),showNext_View();" style="position:relative;left:5px;color:#fff;text-decoration:none;font-weight:normal;font-size:10px;"> >></a></span>';
						}
						l_data += '</span>';
						cell2.innerHTML = l_data;
						
				} else {
					row2 = t.insertRow(1);
					cell2 = row2.insertCell(0);
					cell2.innerHTML = '&nbsp;';
				}
			}
		
	} else {

		data = '<tr>';
		data += '<td width="490" style="padding: 7px 3px 0px 3px; height:100px;" valign="top" align="left">' +
						 '<p style="margin-top:-8px; padding-top:0px; padding-right:0px;">';

		if(_index < data_arr.length && data_arr[_index+1].length != 0) {
			++_index;
			new_content = data_arr[_index]; 
			while(new_content.indexOf("\\") > -1)
				new_content = new_content.replace("\\", '');
			data += new_content; 
		}

	
/*		if(_index+1 < data_arr.length-1 && data_arr[_index+1].length != 0) {
			data += '</p></td></tr><tr><td align="right"><span style="position:relative;left:1px;top:-6px;padding-right:30px; padding-top:1px;">' +
					   '<a id="read_more" href="javascript:showNext_View();" style="color:#fff;text-decoration:none;font-weight:bold;font-size:11px;">READ MORE >></a></span></td>';
		}
*/		
		data += '</p></td>';
		if(data_arr.length > 1) {
			data += '</tr><tr><td align="right"><span style="position:relative;left:1px;top:-1px;padding-right:5px; padding-top:1px;">';
		
			if(_index > 0) {
				data +=	'<a id="read_more" href="javascript:setCurIndex('+ Number(_index-2) +'),showNext_View();" style="color:#fff;text-decoration:none;font-weight:normal;font-size:10px;"><< </a>';
			}
			
			if(data_arr.length > 2) {
				for(i=0;i<data_arr.length-1; i++) {
					data += '<a id="read_more" href="javascript:setCurIndex('+Number(i-1)+'),showNext_View();" style="padding-left:3px; padding-right:3px; color:#fff; text-decoration:none; font-weight:normal; font-size:10px;';
				
					if(_index == Number(i))
						data += 'color:orange;';
						
					data += '">[ ' +
					Number(i+1) + ' ]</a>';	
				}
			}
			if(_index+1 < data_arr.length-1 && data_arr[_index+1].length != 0) {
				data +=	'<a id="read_more" href="javascript:setCurIndex('+ Number(_index) +'),showNext_View();"  style="position:relative; left:5px; color:#fff; text-decoration:none; font-weight:normal; font-size:10px;"> >></a>';
			}
			data += '</span></td>';
		}
		
		data += '</tr>';
		
		document.getElementById('data_pnl').innerHTML = data;
   }

//	if(cur_img != _img)
		document.getElementById('tab_img').src = 'images/' + _img;
//	if(cur_img != _img)
//		cur_img = _img;
}

function showContactPage() {
	
//	document.getElementById('fragment-2').innerHTML = document.getElementById('fragment-6').innerHTML;		
   if(navigator.appVersion.indexOf('MSIE') > -1) {
		if(lang == 'nl') {
			var t1 = document.getElementById('cp_tbl_1');
			t1.deleteRow(1);
			var row2 = t1.insertRow(1);
			var cell1 = row2.insertCell(0);
			cell1.innerHTML = document.getElementById('low_1_nl').innerHTML;
			var cell2 = row2.insertCell(1);
			cell2.innerHTML = document.getElementById('low_2_nl').innerHTML;

			t1.deleteRow(0);
			var row = t1.insertRow(0);
			// left cell
			var cellLeft = row.insertCell(0);
			cellLeft.colSpan = 2;
			cellLeft.innerHTML = document.getElementById('cp_nl_data_1').innerHTML; //document.getElementById('cp_nl_data_1').innerHTML;


	  	    var t2 = document.getElementById('cp_tbl_2');
			t2.deleteRow(0);
			r2 = t2.insertRow(0);
			cellRight = r2.insertCell(0);
			cellRight.innerHTML = document.getElementById('cp_nl_data_2').innerHTML;
		}
   		 
		 else {
			var t1 = document.getElementById('cp_tbl_1');
			t1.deleteRow(0);
			var row2 = t1.insertRow(0);
			var cell1 = row2.insertCell(0);
			cell1.innerHTML = document.getElementById('low_1_en').innerHTML;
			var cell2 = row2.insertCell(0);
			cell2.innerHTML = document.getElementById('low_2_en').innerHTML;
			
			t1.deleteRow(1);
			var row = t1.insertRow(0);
			// left cell
			var cellLeft = row.insertCell(0);
			cellLeft.colSpan = 2; 
			cellLeft.innerHTML = document.getElementById('cp_en_data_1').innerHTML;

			var t2 = document.getElementById('cp_tbl_2');
			t2.deleteRow(0);
			r2 = t2.insertRow(0);
			cellRight = r2.insertCell(0);
			cellRight.innerHTML = document.getElementById('cp_en_data_2').innerHTML;
		}
   
   } else {
		if(lang == 'nl') {
			document.getElementById('contact_data_pnl').innerHTML = document.getElementById('cp_nl').innerHTML;
		} else {
			document.getElementById('contact_data_pnl').innerHTML = document.getElementById('cp_en').innerHTML;
		}
   }

/*	
		document.getElementById('fragment-2').innerHTML = document.getElementById('fragment-6').innerHTML;	
	else
		document.getElementById('fragment-2').innerHTML = document.getElementById('fragment-7').innerHTML;	
*/
}

function setCurIndex(idx) {
	_index = idx;
}


String.prototype.trim = function () {
    return this.replace(/^\s*/, "").replace(/\s*$/, "");
}

var cp_en = '<?php if(strstr($_SERVER[\'HTTP_USER_AGENT\'], "MSIE 6") || strstr($_SERVER[\'HTTP_USER_AGENT\'], "MSIE 7")) {  ?>' +
                                        '<p style="font-size:12px;margin-top:5px;">' +
                                        	'<?php echo $text_l1_en; ?></p>' +
                                        '<p style="margin-top:-15px;"><table width="170" cellpadding="0" cellspacing="1" border="1" style="background: #0070B8;height:23px;">' +
                			              '     <tr><td style="border:1px solid #003399;" align="center"><span style="padding-top:3px;padding-left:5px;padding-right:3px;">' +
                 					      ' <a href="#" onclick="showInfoForm();" style="color:#fff;text-decoration:none;font-weight:normal;font-size:11px;">CONTACT FORM</a></span>' +
 	                    		  '</td></tr></table><br /></p></td></tr>' +
                           '<?php } else if(strstr($_SERVER[\'HTTP_USER_AGENT\'], "MSIE 8")) {  ?>' +
                                        '<p style="font-size:12px;margin-top:10px;">' +
                                        	'<?php echo $text_l1_en; ?></p>' +
                                       ' <p style="margin-top:-5px;"><table width="170" cellpadding="0" cellspacing="1" border="0" style="background: #0070B8;height:23px;">' +
                			                 '  <tr><td style="border:1px solid #003399;" align="center"><span style="padding-top:3px;padding-left:5px;padding-right:3px;">' +
                 					      ' <a href="#" onclick="showInfoForm();" style="color:#fff;text-decoration:none;font-weight:normal;font-size:11px;">CONTACT FORM</a></span>' +
 	                    		  '</td></tr></table><br /></p></td></tr>' +
						  '<?php  } else { ?> 								' +		
                                        '<p style="font-size:12px;margin-top:-5px;">' +
                                        '	<?php echo $text_l1_en; ?></p>' +
                                       ' <p style="margin-top:-5px;"><table width="170" cellpadding="0" cellspacing="1" border="0" style="background: #0070B8;height:23px;">' +
                			                '   <tr><td style="border:1px solid #003399;" align="center"><span style="padding-top:3px;padding-left:5px;padding-right:3px;">' +
                 					      ' <a href="#" onclick="showInfoForm();" style="color:#fff;text-decoration:none;font-weight:normal;font-size:11px;">CONTACT FORM</a></span>' +
 	                    		 ' </td></tr></table><br /></p></td></tr>' +
 						 ' <?php  } ?>' +                                    
             ' <?php if(strstr($_SERVER[\'HTTP_USER_AGENT\'], "MSIE 6") || strstr($_SERVER[\'HTTP_USER_AGENT\'], "MSIE 7")) {  ?>' +
					'<tr>' +
                     ' <td valign="top">' +
                        ' <p style="margin-top:-15px;"><?php echo $text_l2_en; ?></p>' +
                        ' <p id="link_1" style="margin-top:-10px;">' +
                        ' <table width="170" cellpadding="0" cellspacing="1" border="0" style="background: #0070B8;height:23px;">' +
                             '  <tr><td style="border:1px solid #003399;" align="center">' +
                        '<span style="padding-top:3px;padding-left:5px;padding-right:3px; position:relative;left:0px;"><a href="#" onclick="return popitup(\'http://maps.google.com/maps?hl=en&q=Zandvoortstraat+47+C+2800+Mechelen+Belgium&ie=UTF8&split=0&ei=wxA5StCsH4fY-QaS7cjCAw&t=h&z=16\')" target="_blank" style="color:#fff;text-decoration:none;font-weight:normal;font-size:11px;">MAP</a></span></td></tr></table></p></td>' +
                     ' <td valign="top">' +
                        ' <p style="margin-top:-15px;"><?php echo $text_l3_en; ?></p>' +
                        ' <p id="link_1" style="margin-top:-10px;">' +
                       '  <table width="170" cellpadding="0" cellspacing="1" border="0" style="background: #0070B8;height:23px;">' +
                               '<tr><td style="border:1px solid #003399;" align="center">' +
                        '<span style="padding-top:3px;padding-left:5px;padding-right:3px; position:relative;left:0px;"><a href="#" onclick="return popitup(\'http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Corkstraat+46++3047+AC+Rotterdam+Netherlands&sll=51.943796,4.409687&sspn=0.010172,0.02841&ie=UTF8&t=h&z=16\')" target="_blank" style="color:#fff;text-decoration:none;font-weight:normal;font-size:11px;">MAP</a></span></td></tr></table></p></td>' +
              ' <?php } else if(strstr($_SERVER[\'HTTP_USER_AGENT\'], "MSIE 8")) {  ?>' +
					'<tr>' +
                     ' <td valign="top">' +
						' <p style="margin-top:-2px;"><?php echo $text_l2_en; ?></p>' +
                       '  <p id="link_1" style="margin-top:-5px;">' +
                       '  <table width="170" cellpadding="0" cellspacing="1" border="0" style="background: #0070B8;height:23px;">' +
                           '    <tr><td style="border:1px solid #003399;" align="center">' +
                      '  <span style="padding-top:3px;padding-left:5px;padding-right:3px; position:relative;left:0px;"><a href="#" onclick="return popitup(\'http://maps.google.com/maps?hl=en&q=Zandvoortstraat+47+C+2800+Mechelen+Belgium&ie=UTF8&split=0&ei=wxA5StCsH4fY-QaS7cjCAw&t=h&z=16\')" target="_blank" style="color:#fff;text-decoration:none;font-weight:normal;font-size:11px;">MAP</a></span></td></tr></table></p></td>' +
                     ' <td valign="top">' +
						' <p style="margin-top:-2px;"><?php echo $text_l3_en; ?></p>' +
                       '  <p id="link_1" style="margin-top:-5px;">' +
                       '  <table width="170" cellpadding="0" cellspacing="1" border="0" style="background: #0070B8;height:23px;">' +
                          '     <tr><td style="border:1px solid #003399;" align="center">' +
                      ' <span style="padding-top:3px;padding-left:5px;padding-right:3px; position:relative;left:0px;"><a href="#" onclick="return popitup(\'http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Corkstraat+46++3047+AC+Rotterdam+Netherlands&sll=51.943796,4.409687&sspn=0.010172,0.02841&ie=UTF8&t=h&z=16\')" target="_blank" style="color:#fff;text-decoration:none;font-weight:normal;font-size:11px;">MAP</a></span></td></tr></table></p></td>' +
'</tr></table></td>' +
                            '  <td width="25%" valign="top" align="left">';
             cp_en_2 =     '  <table width="200" cellpadding="2" cellspacing="0" border="0" id="cp_tbl_2">' +
                                '  <tr>' +
                               '   <td valign="top" colspan="2" style="padding-top:0px;" id="cp_en_data_2">' +
                           '<?php if(strstr($_SERVER[\'HTTP_USER_AGENT\'], "MSIE")) {  ?>' +
                                '  		<p style="font-size:12px;margin-top:3px;">' +
                               '         	<?php echo $text_r1_en; ?></p><br />' +
						'  <?php  } else { ?> 										' +
                            '      		<p style="font-size:12px;margin-top:-3px;">' +
                                        	'<?php echo $text_r1_en; ?></p>' +
 						 ' <?php  } ?>' +
                            '            <p><?php echo $text_r2_en; ?></p>' +
                          ' <?php if(strstr($_SERVER[\'HTTP_USER_AGENT\'], "MSIE 7")) {  ?>' +
                          '              <p  style="margin-top:-33px;"><table width="170" cellpadding="0" cellspacing="1" border="0" style="background: #0070B8;height:23px;">' +
                          ' <?php }' +
						  ' 		 if(strstr($_SERVER[\'HTTP_USER_AGENT\'], "MSIE 8")) {  ?>' +
                                 '       <p  style="margin-top:-27px;"><table width="170" cellpadding="0" cellspacing="1" border="0" style="background: #0070B8;height:23px;">' +
						 ' <?php  } else { ?> 										' +
                              '          <p  style="margin-top:-5px;"><table width="170" cellpadding="0" cellspacing="1" border="0" style="background: #0070B8;height:23px;">' +
						 ' <?php  } ?> 										' +
                                  '     <tr><td style="border:1px solid #003399;" align="center"><span style="padding-top:3px;padding-left:5px;padding-right:3px;">' +
                                   '        <a href="#" rel="rokbox(demo)" onclick="showJobForm()" style="color:#fff;text-decoration:none;font-weight:normal;font-size:11px;">JOB SALES FORM</a></span>' +
        		                  '  		   </td></tr></table></p>' +
                                  '      </td></tr>' +
								'	</table></td></tr></table></td>' +
                          '  </td></tr></table>' +
                       '</td>';											   

 