
l = 60; // x座標
t = 30; // y座標
w = 500; // 横幅
h = 340; // 縦幅


function showProfile(url, width, height) {
	focus_ch = window.open(url,"OpenWindow",
	"screenX=" + l + ",screenY=" + t + ",left=" + l + ",top=" + t + ",width=" + width + ",height=" + height + ", scrollbars=no,location=no,menubar=no,toolbar=no, status=no,directories=no,resizable=no");
	focus_ch.focus();
}

