num = 0;

function sneakInLink (target)
{
    //alert (target);
    var myLink = document.createElement ('a');
    var href = document.createAttribute ('href');
    myLink.setAttribute ('href', target);
    myLink.innerText = "Proceed";
    var spanAppend = document.getElementById ('myDivLink');
    spanAppend.appendChild (myLink);
}

function rand ()
{
    now = new Date ()
	num = (now.getSeconds ()) % 10
	num = num + 1
}
function guessnum ()
{
    rand();
    guess = document.GetSubmission.t1.value;
    if (guess == 'right' || guess == 'RIGHT')
    {
	sneakInLink ("RL1A.html");
    }


    else
    {
	sneakInLink ("LL1A.html");
    }
}

