function SetOverimage(p_IMG,p_NAME){
	document.images[p_NAME].src = p_IMG;
}

function SetOutimage(p_IMG,p_NAME){
	document.images[p_NAME].src = p_IMG;
}

// 商品拡大ポップアップ
function openPictureWindow(imgsrc) {
	x = 550;
	y = 436;
	w=window.open("picture.html", "pic", "top=0,left=0,width="+x+",height="+y);
	w.document.write("<html><head><title>拡大図</title></head><body leftmargin=\"0\" topmargin=\"0\"><img src=\"" + imgsrc + "\" width=\"" + x + "\" height=\"" + y + "\"></body></html>");
}
