<!-- 
function clear_textbox()
{
if (document.form1.LOGNID.value == "Logon ID")
document.form1.LOGNID.value = "";
}

function clear_textbox2()
{
if (document.form1.PASSWD.value == "Security Code")
document.form1.PASSWD.value = "";
} 

function fill_box()
{
if (document.form1.LOGNID.value == "")
document.form1.LOGNID.value = "Logon ID";
}
function fill_box2()
{
if (document.form1.PASSWD.value == "")
document.form1.PASSWD.value = "Security Code";
}


-->
