function mismatch(n)
{
alert(document.getElementById("sq1").innerHTML);
}
function FillInDigits()
{
var sq1 = Math.floor(Math.random()*15 + 1);
var sq2 = Math.floor(Math.random()*15 + 1);
mismatch(2);
document.getElementById("sq1").innerHTML = sq1;
document.getElementById("sq2").innerHTML = sq2;
}
window.onload = FillInDigits();