<!--[33,160,4887] published at 2008-08-20 23:33:29 from #n152 by system-->

var index = 15;
var goto_no =1;
all_no = new Array(14);
all_url = new Array(14);
all_no[1]= '139413';
all_url[1]= 'http://auto.sina.com.cn/photo/benznewec06/139413.shtml';
all_no[2]= '139412';
all_url[2]= 'http://auto.sina.com.cn/photo/benznewec06/139412.shtml';
all_no[3]= '139411';
all_url[3]= 'http://auto.sina.com.cn/photo/benznewec06/139411.shtml';
all_no[4]= '139410';
all_url[4]= 'http://auto.sina.com.cn/photo/benznewec06/139410.shtml';
all_no[5]= '139409';
all_url[5]= 'http://auto.sina.com.cn/photo/benznewec06/139409.shtml';
all_no[6]= '139408';
all_url[6]= 'http://auto.sina.com.cn/photo/benznewec06/139408.shtml';
all_no[7]= '139407';
all_url[7]= 'http://auto.sina.com.cn/photo/benznewec06/139407.shtml';
all_no[8]= '139406';
all_url[8]= 'http://auto.sina.com.cn/photo/benznewec06/139406.shtml';
all_no[9]= '139405';
all_url[9]= 'http://auto.sina.com.cn/photo/benznewec06/139405.shtml';
all_no[10]= '139404';
all_url[10]= 'http://auto.sina.com.cn/photo/benznewec06/139404.shtml';
all_no[11]= '139403';
all_url[11]= 'http://auto.sina.com.cn/photo/benznewec06/139403.shtml';
all_no[12]= '139402';
all_url[12]= 'http://auto.sina.com.cn/photo/benznewec06/139402.shtml';
all_no[13]= '139401';
all_url[13]= 'http://auto.sina.com.cn/photo/benznewec06/139401.shtml';
all_no[14]= '139400';
all_url[14]= 'http://auto.sina.com.cn/photo/benznewec06/139400.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];
}