function go(url, warning, msg)
{
	if (warning) {
		if(!confirm(msg))　return;
	}
	window.location.href = url;
}


