// JavaScript Document

$(document).ready(function() {

$('#cerca').hide();


$('a#search-show').click(function() {
	$('#cerca').show();
	
	return false;
});
 
 

$("#sistema_aperture").change(function(){
    var combo_aperture;
	var aperture;	
    combo_aperture	= document.getElementById("sistema_aperture");
	aperture  = combo_aperture.options[combo_aperture.selectedIndex].value				
	window.location = "viewdoc.asp?co_id=91&aperture=" + aperture											
});

$("#materiali").change(function(){
    var combo_materiali;
	var materiali;
    combo_materiali = document.getElementById("materiali");
	materiali = combo_materiali.options[combo_materiali.selectedIndex].value
	window.location = "viewdoc.asp?co_id=91&materiali=" + materiali
});

$("#isolamento").change(function(){
   var combo_isolamento;
   var isolamento;
   combo_isolamento= document.getElementById("isolamento");
   isolamento  = combo_isolamento.options[combo_isolamento.selectedIndex].value
   window.location = "viewdoc.asp?co_id=91&isolamento=" + isolamento
});
 
 
});
