function win_open(path,preview,pname) {
//ウィンドウサイズ
var wx = 520;	//横
var wy = 480;	//縦
//ウィンドウ表示位置の計算（画面サイズ-ウィンドウサイズ÷2）
var x = (screen.width - wx)/2;
var y = (screen.height - wy)/2;
//タイトル
var title = "拡大写真";
//コピーライト
var cpt = "&copy;2007 Business Hotel TAKAMI All right Reserved.";
//ウィンドウ設定
new_win=window.open("","preview","toolbar=0,menubar=0,scrollbars=0,status=0,width="+wx+",height="+wy+",left="+x+",top="+y);
new_win.document.open();
new_win.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n');
new_win.document.write('<html xmlns="http://www.w3.org/1999/xhtml">\n');
new_win.document.write("<head>\n");
new_win.document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\n');
new_win.document.write('<meta http-equiv="Content-Style-Type" content="text/css" />\n');
new_win.document.write('<meta http-equiv="Content-Script-Type" content="text/javascript" />\n');
new_win.document.write('<link href="../common/css/subwin.css" rel="stylesheet" type="text/css" media="screen,print" />\n');
new_win.document.write('<meta http-equiv="imagetoolbar" content="no" />\n');
new_win.document.write("<title>"+title+"</title>\n");
new_win.document.write("</head>\n");
new_win.document.write("<body>\n");
new_win.document.write('<div id="container">\n');
new_win.document.write("<img src=\""+path+preview+".jpg\" alt=\""+preview+"\" />\n");
new_win.document.write('<p class="cbtn"><a href="javascript:window.close();">CLOSE</a></p>\n');
new_win.document.write("<address>"+cpt+"</address>\n");
new_win.document.write('</div>\n');
new_win.document.write("</body>\n");
new_win.document.write("</html>\n");
new_win.document.close();
//ウィンドウを前面に表示
if(new_win != null){
	new_win = new_win.focus();
	}
}

/*
html記載例：
<p><a href="" onclick="javascript:win_open('http://def4.jp/common/img/','h1');" onkeypress="javascript:win_open('http://def4.jp/common/img/','h1');">別ウィンドウ　winopen.js</a></p>
*/
