function delay()
{
    setTimeout("next()",2000);
}

function next()
{
    top.location.href='Links.php';
}

