<!-- Begin
var phone_num='';
var timerID = null;
var timerRunning = false;
function but1()
{
 
phone_num = phone_num + '1';
 chknum();
}
function but2()
{
 phone_num = phone_num + '2';
 chknum();
}
function but3()
{
 phone_num = phone_num + '3';
 chknum();
}
function but4()
{
 phone_num = phone_num + '4';
 chknum();
}
function but5()
{
 phone_num = phone_num + '5';
 chknum();
}
function but6()
{
 phone_num = phone_num + '6';
 chknum();
}
function but7()
{
 phone_num = phone_num + '7';
 chknum();
}
function but8()
{
 phone_num = phone_num + '8';
 chknum();
}
function but9()
{
 phone_num = phone_num + '9';
 chknum();
}
function but0()
{
 phone_num = phone_num + '0';
 chknum();
}
function chknum()
{

//ADD YOUR NUMBERS AND URLS HERE

if (phone_num=="01")
 document.location="http://scss.8k.com";

if (phone_num=="29154")
 document.location="http://scss.8k.com/challenges/l2";

if (phone_num=="58956")
 document.location="http://scss.8k.com/challenges/3three3";

if (phone_num=="48692")
 document.location="http://scss.8k.com/challenges/4thlevel";

if (phone_num=="75241")
 document.location="http://scss.8k.com/challenges/55555";

document.board.pn.value=phone_num;
}
function clearit()
{
 phone_num = "";
 document.board.pn.value=phone_num;
}
//  End -->