
$(document).ready(function(){
	updForm();
	$('input[name="aux_type"]').live('change',function(){updForm();});
	$('select[name="coll_code"]').live('change',function(){updForm();});
	$('#shw_btn').live('click',function(){
		//alert(uncache("/new_gow/includes/block_main_search_helper.asp?cmd=getUrl&"+$('form[name="theform_search"]').serialize()));
		$.get(uncache("/new_gow/includes/block_main_search_helper.asp?cmd=getUrl&"+$('form[name="theform_search"]').serialize()), function(data) {
			document.location.href=data;
		});
	});
	
	//setTimeout(function(){$(".flashing").fadeOut("fast",function(){$(".flashing").show(); }); }, 2000);
})

function updForm(){
	//alert(uncache("/new_gow/includes/block_main_search_helper.asp?cmd=updateForm&"+$('form[name="theform_search"]').serialize()));
	$.get(uncache("/new_gow/includes/block_main_search_helper.asp?cmd=updateForm&"+$('form[name="theform_search"]').serialize()), function(data) {
		$("#main_search_holder").html(data);
	});
}

function uncache(address) {
	return address + ((address.indexOf("?") >= 0) ? "&" : "?") + "rand=" + Math.floor(Math.random()*100000)
}





