function LogIn(form)
{
  document.location = form.password.value + ".htm";
}

function getCookieValue(name)
{
  var c=document.cookie;
	var begin=c.indexOf(name);
	if(begin <0) return("");
	begin += name.length + 1;
	var end=c.indexOf(";",begin);
	if(end == -1) end=c.length;
	return(c.slice(begin,end));
}
	