// JavaScript Document

function makeDetailedSearchURL(page,search_tp) {
	man_id=document.getElementById('man_id').value;
	man_model_id=document.getElementById('man_model_id_group').value;
	with_picture=document.getElementById('with_picture').value;
	year_from=document.getElementById('year_from').value;
	year_to=document.getElementById('year_to').value;
	price_from=document.getElementById('price_from').value;
	price_to=document.getElementById('price_to').value;
	customs_passed=document.getElementById('customs_passed').value;
	category_id=document.getElementById('category_id').value;
	location_id_1=document.getElementById('location_id_1').value;
	last_days=document.getElementById('last_days').value;
	
	
	s=page+'?search_tp='+search_tp+'&man_id='+man_id+'&man_model_id_group='+man_model_id+'&with_picture='+with_picture+
	'&year_from='+year_from+'&year_to='+year_to+'&price_from='+price_from+'&price_to'+price_to+
	'&customs_passed='+customs_passed+'&category_id='+category_id+'&location_id_1='+location_id_1+
	'&last_days='+last_days
	document.location=s;
};

