function right() {
	var xmlhttp;
	
	if (window.XMLHttpRequest) {
		xmlhttp = new XMLHttpRequest();
	}
	else if (window.ActiveXObject) {
		xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
	}
	
	xmlhttp.open('GET','/_feed/tekst.php',true);
	
	xmlhttp.onreadystatechange = function() {
		if (xmlhttp.readyState == 4) {
			var result = xmlhttp.responseText;
			
			var json = eval('(' + result + ')');
			
			text_search		= json['text_search'];
			text_hvadkanvi	= json['text_hvadkanvi'];
			text_nyhedsbrev	= json['text_nyhedsbrev'];
			
			var div1 = document.createElement('div');
				div1.className = 'header roed nodeco notoppadding';
				
				div1.appendChild(document.createTextNode(text_search));
				
			var form1 = document.createElement('form');
				form1.setAttribute('name','search');
				form1.setAttribute('method','post');
				form1.setAttribute('action','/search.php');
				
				var input1 = document.createElement('input');
					input1.id = 'input1';
					
					input1.className = 'special';
					
					input1.setAttribute('type','text');
					input1.setAttribute('name','q');
					input1.setAttribute('value','Indtast søgeord');
					
					input1.style['width'] = '114px';
					
					form1.appendChild(input1);
				
				var input2 = document.createElement('input');
					input2.className = 'special';
					
					input2.setAttribute('type','submit');
					input2.setAttribute('value','Søg');
					
					input2.style['marginLeft'] = '3px';
					input2.style['padding'] = '1px';
					
					form1.appendChild(input2);
				
			var div2 = document.createElement('div');
				div2.className = 'header gul';
				
				div2.appendChild(document.createTextNode(text_hvadkanvi));
				
			var div3 = document.createElement('a');
				div3.id = 'hvadkanvi';
				
				div3.setAttribute('href','#');
				
				div3.style['display']			= 'block';
				div3.style['color']				= '#000000';
				div3.style['textDecoration']	= 'none';
				div3.style['textAlign']			= 'left';
				
				div3.appendChild(document.createTextNode('Henter tekst...'));
				
			var div4 = document.createElement('div');
				div4.className = 'header groen';
				
				div4.appendChild(document.createTextNode(text_nyhedsbrev));
				
				var nyhedsinfo = document.createElement('div');
					nyhedsinfo.style['width'] = '150px';
					nyhedsinfo.style['textAlign'] = 'justify';
					nyhedsinfo.style['marginBottom'] = '5px';
					nyhedsinfo.style['fontSize'] = '10px';
					
					nyhedsinfo.appendChild(document.createTextNode('Du kan her tilmelde dig vores nyhedsbrev, som vi udsender, når der sker nye tiltag hos Denker Media.'));
				
			var form2 = document.createElement('form');
				form2.setAttribute('name','search');
				form2.setAttribute('method','post');
				form2.setAttribute('action','/nyhedsbrev.php');
				
				var table = document.createElement('table');
					table.setAttribute('align','center');
					table.setAttribute('cellPadding','0');
					table.setAttribute('cellSpacing','1');
					
					table.style['width'] = '156px';
					
					var tbody = document.createElement('tbody');
					
						var tr1 = document.createElement('tr');
							tr1.style['textAlign']		= 'left';
							tr1.style['verticalAlign']	= 'middle';
							
							var td1 = document.createElement('td');
								td1.style['width'] = '120px';
								
								var input3 = document.createElement('input');
									input3.id = 'input2';
								
									input3.className = 'special';
									
									input3.setAttribute('type','text');
									input3.setAttribute('name','navn');
									input3.setAttribute('value','Dit navn');
									input3.setAttribute('tabIndex','1');
									
									input3.style['width'] = '93%';
									
									td1.appendChild(input3);
							
							var td2 = document.createElement('td');
								td2.setAttribute('rowSpan','2');
								
								var input4 = document.createElement('input');
									input4.className = 'special';
									
									input4.setAttribute('type','submit');
									input4.setAttribute('value','OK');
									input4.setAttribute('tabIndex','3');
									
									input4.style['width'] = '32px';
									input4.style['height'] = '38px';
									
									td2.appendChild(input4);
									
								tr1.appendChild(td1);
								tr1.appendChild(td2);
					
						var tr2 = document.createElement('tr');
							tr2.style['textAlign']		= 'left';
							tr2.style['verticalAlign']	= 'middle';
							
							var td3 = document.createElement('td');
								var input5 = document.createElement('input');
									input5.id = 'input3';
									
									input5.className = 'special';
									
									input5.setAttribute('type','text');
									input5.setAttribute('name','mail');
									input5.setAttribute('value','Din mailadresse');
									input5.setAttribute('tabIndex','2');
									
									input5.style['width'] = '93%';
									
									td3.appendChild(input5);
								
								tr2.appendChild(td3);
								
							tbody.appendChild(tr1);
							tbody.appendChild(tr2);
							
						table.appendChild(tbody);
					form2.appendChild(table);
					
			document.getElementById('right').appendChild(div1);
			document.getElementById('right').appendChild(form1);
			document.getElementById('right').appendChild(div2);
			document.getElementById('right').appendChild(div3);
			document.getElementById('right').appendChild(div4);
			document.getElementById('right').appendChild(nyhedsinfo);
			document.getElementById('right').appendChild(form2);
			
			document.getElementById('input1').onfocus = function() { document.getElementById('input1').value = '' }
			document.getElementById('input2').onfocus = function() { document.getElementById('input2').value = '' }
			document.getElementById('input3').onfocus = function() { document.getElementById('input3').value = '' }
			
			if (document.getElementById('hvadkanvi')) hvadkanvi();
		}
	}
	
	xmlhttp.send(null);	
}