function itemView(img, x, y){
	if(img.match(/s.png/)){img = img.replace(/s.png/, ".png");}
	else if(img.match(/.jpg/)){img = img.replace(/.jpg/, "_b.jpg");}

	document.getElementById("viewTmp").value = img;

	var sub = window.open('detail.html', 'detail', 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, width=800, height=600,left=50, top=50');
	sub.focus();
<!--width640 height560-->
}

function imgDetail(){
	document.images["view"].src = window.opener.document.getElementById("viewTmp").value;
}
