function Empty(){
var text=document.getElementById("mod_login_username").value;
if (text=="user name")
{
document.getElementById("mod_login_username").value="";
}
}

function restore()
{
var text=document.getElementById("mod_login_username").value;
if (text=="")
{
document.getElementById("mod_login_username").value="user name";
}
}


function Empty2(){
var text=document.getElementById("mod_login_password").value;
if (text=="password")
{
document.getElementById("mod_login_password").value="";
}
}

function restore2()
{
var text=document.getElementById("mod_login_password").value;
if (text=="")
{
document.getElementById("mod_login_password").value="password";
}
}
