	function get_res(pg) {
		if (pg == '') {
			pg = 1;
			$('textres').update('<br><font color="gray">Loading... Please wait.</font><br>');
		} else {
			$('labels').update('<font color="gray">Loading... Please wait.</font>');
		}

		var binding = "";

		if ($('binding_dvd').checked) binding = "dvd";
		if ($('binding_hddvd').checked) binding += "|hddvd";
		if ($('binding_bluray').checked) binding += "|bluray";
	
		st = 'search_products.php?page='+pg+'&keyword='+$('keyword').value+'&binding='+binding;

		new Ajax.Request(st, {
			onSuccess: function(transport) {
	   			$('textres').update(transport.responseText);
		  	}	
		});
	}
