<!--[33,160,1672] published at 2004-08-28 11:01:23 from #010 by system-->

var index = 17;
var goto_no =1;
all_no = new Array(16);
all_url = new Array(16);
all_no[1]= '56623';
all_url[1]= 'http://auto.sina.com.cn/photo/ftlandcru/56623.shtml';
all_no[2]= '56603';
all_url[2]= 'http://auto.sina.com.cn/photo/ftlandcru/56603.shtml';
all_no[3]= '56602';
all_url[3]= 'http://auto.sina.com.cn/photo/ftlandcru/56602.shtml';
all_no[4]= '56601';
all_url[4]= 'http://auto.sina.com.cn/photo/ftlandcru/56601.shtml';
all_no[5]= '56600';
all_url[5]= 'http://auto.sina.com.cn/photo/ftlandcru/56600.shtml';
all_no[6]= '56599';
all_url[6]= 'http://auto.sina.com.cn/photo/ftlandcru/56599.shtml';
all_no[7]= '56598';
all_url[7]= 'http://auto.sina.com.cn/photo/ftlandcru/56598.shtml';
all_no[8]= '56597';
all_url[8]= 'http://auto.sina.com.cn/photo/ftlandcru/56597.shtml';
all_no[9]= '56596';
all_url[9]= 'http://auto.sina.com.cn/photo/ftlandcru/56596.shtml';
all_no[10]= '56595';
all_url[10]= 'http://auto.sina.com.cn/photo/ftlandcru/56595.shtml';
all_no[11]= '56594';
all_url[11]= 'http://auto.sina.com.cn/photo/ftlandcru/56594.shtml';
all_no[12]= '56593';
all_url[12]= 'http://auto.sina.com.cn/photo/ftlandcru/56593.shtml';
all_no[13]= '56592';
all_url[13]= 'http://auto.sina.com.cn/photo/ftlandcru/56592.shtml';
all_no[14]= '56591';
all_url[14]= 'http://auto.sina.com.cn/photo/ftlandcru/56591.shtml';
all_no[15]= '56590';
all_url[15]= 'http://auto.sina.com.cn/photo/ftlandcru/56590.shtml';
all_no[16]= '56589';
all_url[16]= 'http://auto.sina.com.cn/photo/ftlandcru/56589.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];
}