function login()
{
document.location.href = "login.asp" ;
}

function color_in(x,c)
{
temp = eval("document.all.n"+x) ;
//alert (c);
temp.style.color = c;
}

function color_out(x,c)
{
temp = eval("document.all.n"+x) ;
temp.style.color = c;
}

function go(x)
{
document.location.href = x ;
}