function transfer()
{
	var i, args=transfer.arguments;
	
	if (args.length == 2)
	{
		// confirmation reason requested
		if ( confirm (args[1]) )
		{
			location.href = args[0];
		}
	}
	else
	{
		// just transfer the user
		location.href = args[0];
	}
}

function goto (obj, url) 
{
    window.location.href = url + obj.options[obj.selectedIndex].value;
}