

/* ウィンドウポップアップ
-----------------------------------------------------------*/
function openWindow(url, name, width, height){
	var w = window.open(url, name, 'scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no,width=' + width + ',height=' + height);
	w.focus();
}
