<!-- //
function clearLogin()
{
    if (document.form1.username.value == "username")
    {
    document.form1.username.value = "";
    }
}
function isLogin()
{
    if (document.form1.username.value == "")
    {
    document.form1.username.value = "username";
    }
}
function clearPassword()
{
    if (document.form1.password.value == "password")
    {
    document.form1.password.value = "";
    }
}
function isPassword()
{
    if (document.form1.password.value == "")
    {
    document.form1.password.value = "password";
    }
}

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}
// -->
// JavaScript Document