// JavaScript Document
function go2(url)
{
	document.location=url;
}

function ok(msg)
{
	return confirm(msg);
}

function back2(alt)
{
	if(history.length>2) history.back()
	else go2(alt);
}
