function navi(theURL,winName,features)
{ //v2.0
  window.open(theURL,winName,features);
}
function openwindow(openURL)
{ //v2.0
  window.open(openURL);
}
function ask(type){
	if (type == "send")
		rtn = confirm("データ    信          。\n              ？");
	if (type == "update")
		rtn = confirm("データ  更新      。\n              ？");
	if (type == "delete")
		rtn = confirm("データ            。\n              ？");
	if (rtn)
		return true;
	return false;
}

