function showpic(id,arrpic){
	//html = "<div id='showpic"+id+"'><img border=0 src="+arrpic[0]+" width=545 height=362 /></div>\n";
	html = "<div id='showpic"+id+"'><img border=0 src="+arrpic[0]+" width=545 /></div>\n";
	html += "<div id=showpiclist align='center'>";
	for(i=0;i<arrpic.length;i++){
		//html +="<a href=\"#pic\" onclick=\"javascript:document.getElementById('showpic"+id+"').innerHTML='<img border=0 src="+arrpic[i]+" width=545 height=362 />'\"><img border=0 src="+arrpic[i]+" width=110 height=70 /></a>\n";
		html +="<a href=\"#pic\" onclick=\"javascript:document.getElementById('showpic"+id+"').innerHTML='<img border=0 src="+arrpic[i]+" width=545 />'\"><img border=0 src="+arrpic[i]+" width=110 height=70 /></a>\n";
	}
	html += "</div>";
	document.write(html);
}