function next(toPage, total)
{
    var f = document.forms.ems;
    // Redirect to which page
    f.p.value = toPage;
    // Submit
    f.submit();
}


