// JavaScript Document
function add_estate(code)
{
	var new_div = document.createElement('div');
var new_input = document.createElement('input');

new_input.type = 'hidden';
new_input.name = 'req_info[]';
new_input.value = code;

new_div.appendChild(new_input);

document.paging.appendChild(new_div);
document.paging.submit();
}

