<!--[33,160,3669] published at 2005-12-28 10:04:07 from #010 by system-->

var index = 12;
var goto_no =1;
all_no = new Array(11);
all_url = new Array(11);
all_no[1]= '116865';
all_url[1]= 'http://auto.sina.com.cn/photo/gzhondaaccord/116865.shtml';
all_no[2]= '116864';
all_url[2]= 'http://auto.sina.com.cn/photo/gzhondaaccord/116864.shtml';
all_no[3]= '116854';
all_url[3]= 'http://auto.sina.com.cn/photo/gzhondaaccord/116854.shtml';
all_no[4]= '116853';
all_url[4]= 'http://auto.sina.com.cn/photo/gzhondaaccord/116853.shtml';
all_no[5]= '116852';
all_url[5]= 'http://auto.sina.com.cn/photo/gzhondaaccord/116852.shtml';
all_no[6]= '116851';
all_url[6]= 'http://auto.sina.com.cn/photo/gzhondaaccord/116851.shtml';
all_no[7]= '116850';
all_url[7]= 'http://auto.sina.com.cn/photo/gzhondaaccord/116850.shtml';
all_no[8]= '116849';
all_url[8]= 'http://auto.sina.com.cn/photo/gzhondaaccord/116849.shtml';
all_no[9]= '116848';
all_url[9]= 'http://auto.sina.com.cn/photo/gzhondaaccord/116848.shtml';
all_no[10]= '116847';
all_url[10]= 'http://auto.sina.com.cn/photo/gzhondaaccord/116847.shtml';
all_no[11]= '116846';
all_url[11]= 'http://auto.sina.com.cn/photo/gzhondaaccord/116846.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];
}