function show_request_form()
{
	var fields=Array(
		Array('Имя<sup style="color:red">*</sup><br />', Array('text','fio')),
		Array('Компания<br />', Array('text','company')),
		Array('e-mail<sup style="color:red">*</sup><br />', Array('text','email')),
		Array('Другой способ связи', Array('text','contact')),
		Array('Дополнительная информация', Array('textarea','comment'))
	);

	var f=document.createElement('form');
	f.id='rf';
	f.name='rf'
	document.getElementById('request_form').innerHTML='';
	document.getElementById('request_form').appendChild(f);
	document.getElementById('rf').innerHTML='<table><tbody id="rf_fields"></tbody></table>';
	var e=document.getElementById('rf_fields');
	if (!e) return;
	for(i=0;i<fields.length;i++)
	{
		var r=e.insertRow(i);
		var c=r.insertCell(0);
		c.innerHTML=fields[i][0];
		c=r.insertCell(1);
		if (fields[i][1][0]=='textarea')
		{
			var inp=document.createElement('textarea');
			inp.name=fields[i][1][1]
			inp.style.width='300px';
			inp.id='rf_'+fields[i][1][1];
		}
		else
		{
			var inp=document.createElement('input');
			inp.type=fields[i][1][0]
			inp.name=fields[i][1][1]
			inp.style.width='300px';
			inp.id='rf_'+fields[i][1][1];
		}
		c.appendChild(inp);
	}
	r=e.insertRow(fields.length);
	c=r.insertCell(0);
	c.colSpan=2;
	c.align='center';
	var inp=document.createElement('input');
	inp.type='button';
	inp.onclick=Function("xajax_submit_order(xajax.getFormValues('rf'));");
	f.onsubmit=function(){ inp.onclick(); return false; }
	inp.value='Отправить заказ'
    c.appendChild(inp);	
	document.getElementById('rf_fio').focus();
}
