// ウィンドウオープン
var w = window;
function openWin(url,name,wsize,hsize) {
	if(!wsize){
		wsize=450;
	}
	if(!hsize){
		hsize=400;
	}
	w1="width="+wsize;
	h1="height="+hsize;
	prop=w1+","+h1+","+"menubar=no,scrollbars, resizable";

//      w = window.open(url, "product", "width=450,height=400,menubar=no,scrollbars, resizable");

	      w = window.open(url, name, prop);
	      w.moveTo(430,200);
	      w.focus();

/*
	if ((w == window) || w.closed) {
	      w = window.open(url, name, prop);
	      w.moveTo(430,200);
	      w.focus();
	} else {
	      w.focus();
	}
*/
//	return(false);
}

// 指定ページの表示
function openPage(url){
	location.href=url;
}
