function wo(u,n,w,h){//ウインドウを調節して開く
	var o = "width="+w+",height="+h+"menubar=no,toolbar=no,scrollbars=yes";
	window.open(u,n,o);
}
function wob(url){//ウィンドウを新規に開く
	window.open(url,'_blank');
}