<!-- 
function clearbox1()
{
if (document.form1.tempNumber.value == "User ID")
document.form1.tempNumber.value = "";
}


function fillbox1()
{
if (document.form1.tempNumber.value == "")
document.form1.tempNumber.value = "User ID";
}

function clearbox2()
{
if (document.form1.tempPassword.value == "xpassword")
document.form1.tempPassword.value = "";
}


function fillbox2()
{
if (document.form1.tempPassword.value == "")
document.form1.tempPassword.value = "xpassword";
}

-->
