<!--[33,160,4528] published at 2008-12-09 16:29:39 from #n152 by system-->

var index = 15;
var goto_no =1;
all_no = new Array(14);
all_url = new Array(14);
all_no[1]= '132543';
all_url[1]= 'http://auto.sina.com.cn/photo/newborazl/132543.shtml';
all_no[2]= '132542';
all_url[2]= 'http://auto.sina.com.cn/photo/newborazl/132542.shtml';
all_no[3]= '132541';
all_url[3]= 'http://auto.sina.com.cn/photo/newborazl/132541.shtml';
all_no[4]= '132352';
all_url[4]= 'http://auto.sina.com.cn/photo/newborazl/132352.shtml';
all_no[5]= '132351';
all_url[5]= 'http://auto.sina.com.cn/photo/newborazl/132351.shtml';
all_no[6]= '132350';
all_url[6]= 'http://auto.sina.com.cn/photo/newborazl/132350.shtml';
all_no[7]= '132349';
all_url[7]= 'http://auto.sina.com.cn/photo/newborazl/132349.shtml';
all_no[8]= '132348';
all_url[8]= 'http://auto.sina.com.cn/photo/newborazl/132348.shtml';
all_no[9]= '132347';
all_url[9]= 'http://auto.sina.com.cn/photo/newborazl/132347.shtml';
all_no[10]= '132346';
all_url[10]= 'http://auto.sina.com.cn/photo/newborazl/132346.shtml';
all_no[11]= '132345';
all_url[11]= 'http://auto.sina.com.cn/photo/newborazl/132345.shtml';
all_no[12]= '132344';
all_url[12]= 'http://auto.sina.com.cn/photo/newborazl/132344.shtml';
all_no[13]= '132343';
all_url[13]= 'http://auto.sina.com.cn/photo/newborazl/132343.shtml';
all_no[14]= '132342';
all_url[14]= 'http://auto.sina.com.cn/photo/newborazl/132342.shtml';


function next_pic(my_no)
{
	for (i=1;i<index;i++){
		if (all_no[i] == my_no){
			goto_no = i;
		}
	}
	goto_no = goto_no + 1;
	if (goto_no == index){
		goto_no = 1;
	}
	window.location.href=all_url[goto_no];
}
function last_pic(my_no)
{
	for (i=1;i<index;i++){
		if (all_no[i] == my_no){
			goto_no = i;
		}
	}
	goto_no = goto_no - 1;
	if (goto_no == 0){
		goto_no = index - 1;
	}
	window.location.href=all_url[goto_no];
}