function NewWindow(file){ //新規ウィンドウを開く



  newWin = window.open('','newWin','width=420,height=470');



  newWin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"');

  newWin.document.write('"http://www.w3.org/TR/html4/loose.dtd">');

  newWin.document.write('<html><head>');

  newWin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8">');

  newWin.document.write('<title>Lupicia Message Label</title>');

  newWin.document.write('</head><body onLoad="focus();">');



  newWin.document.write('<div align="center"><img src="images/gift/label/');

  newWin.document.write(file);

  newWin.document.write('.jpg" alt="" width="300" height="300">');

  newWin.document.write('<br /><br />');

  newWin.document.write('<a href="javascript:window.close();"><img src="images/gift/label/btn_ec_product_close.gif" alt="close window" border="0" height="19" hspace="5" width="79"></a></div>');



  newWin.document.write('</body></html>');



  newWin.document.close();



}