function OpenIMG(url,name,wid,high){
var controlWindow = window.open(url,name,'width=' + wid + ',height=' + high + ',resizeale=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no');
controlWindow.document.open();
controlWindow.document.write('<html><link href=/common/css/style.css rel=stylesheet type=text/css><title>東急リネン・サプライ株式会社</title><body bgcolor=WHITE marginwidth=0 marginheight=0 topmargin=0 leftmargin=0>');
controlWindow.document.write('<center><img src=' + url + '><br>');
controlWindow.document.write('<a href=# onClick=window.close()>閉じる</a></center></body></html>');
controlWindow.document.close();
}
