Quote
<html>
<head>
<title>Подсказка в строке состояния</title>
<script language="JavaScript" type="text/javascript">
<!-- // hide form other browsers
function help(message)
{
self.status = message;
return true;
}
function checkField(field)
{
if (field.value == "")
help("Не забудьте заполнить эти поля");
else
help("");
return true;
}
// stop hiding form other browsers -->
</script>
</head>
<body>
<form method="post">
Имя: <input type="text" name="name" onFocus="help('Ведите свое имя');" onBlur="checkField(this);">
E-mail: <input type="text" name="email" onFocus="help('Ведите свой e-mail');" onBlur="checkField(this);"></form>
</body>
</html>