function Open(imagename){

  var html='<div id="photo" align="center">'
          +'<img src="../item_sozai/'+imagename+'">'
          +'<br><br><a href=\"JavaScript:window.close()\"><img src="../../../javascript/newopenwindow/close.gif" alt="画面を閉じる" title="画面を閉じる" border=0></a>'
		  +'<br><font size="-3" align="center">Copyright (c) by Antique cafe giricco all rights reserved.</font>'
		  +'</div>'
		  
  layName="photo"
		
  win=window.open("","newWin","resizable=1,height=540,width=640,scrollbars=1")
  win.document.open()
  win.document.write(html)
  win.document.title="ItemImageView"
  win.document.close()

}

