function select_jump(f){
location.href="index"+f.options[f.selectedIndex].value+".html";
}

function jump_select_m(min,max,page){
	str="PAGE:<select name=customer_id onChange=\"select_jump(this)\";>";
	for(i=min;i<=max;i++){
		if(page==i){
			str+="<option value=\""+i+"\"  selected=\"selected\">"+i+"</option>";
		}else{
			str+="<option value="+i+" >"+i+"</option>";
		}
	}
	str+="</select>"

document.write(str);
}