<!--[33,160,3866] published at 2006-03-29 18:35:14 from #010 by system-->

var index = 26;
var goto_no =1;
all_no = new Array(25);
all_url = new Array(25);
all_no[1]= '123971';
all_url[1]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123971.shtml';
all_no[2]= '123970';
all_url[2]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123970.shtml';
all_no[3]= '123969';
all_url[3]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123969.shtml';
all_no[4]= '123968';
all_url[4]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123968.shtml';
all_no[5]= '123967';
all_url[5]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123967.shtml';
all_no[6]= '123966';
all_url[6]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123966.shtml';
all_no[7]= '123965';
all_url[7]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123965.shtml';
all_no[8]= '123964';
all_url[8]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123964.shtml';
all_no[9]= '123963';
all_url[9]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123963.shtml';
all_no[10]= '123962';
all_url[10]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123962.shtml';
all_no[11]= '123914';
all_url[11]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123914.shtml';
all_no[12]= '123913';
all_url[12]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123913.shtml';
all_no[13]= '123912';
all_url[13]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123912.shtml';
all_no[14]= '123911';
all_url[14]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123911.shtml';
all_no[15]= '123910';
all_url[15]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123910.shtml';
all_no[16]= '123909';
all_url[16]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123909.shtml';
all_no[17]= '123908';
all_url[17]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123908.shtml';
all_no[18]= '123907';
all_url[18]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123907.shtml';
all_no[19]= '123906';
all_url[19]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123906.shtml';
all_no[20]= '123905';
all_url[20]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123905.shtml';
all_no[21]= '123904';
all_url[21]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123904.shtml';
all_no[22]= '123903';
all_url[22]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123903.shtml';
all_no[23]= '123902';
all_url[23]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123902.shtml';
all_no[24]= '123901';
all_url[24]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123901.shtml';
all_no[25]= '123900';
all_url[25]= 'http://auto.sina.com.cn/photo/gzhondacityzlt/123900.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];
}