function DazzleSoft_history_goBack()
{
    history.back();
}

function DazzleSoft_history_goForward()
{
    history.forward();
}

function DazzleSoft_history_go(step)
{
    history.go(step);
}

function DazzleSoft_history_getLength()
{
    return history.length;
}

