This article has been dead for over three months
You
<html>
<head>
<title>
Inboxcheck
</title>
</head>
<body>
<form>
<input type="text" name="myname"/>
<input type="button" value="Ok" onclick="check(this.form)"/>
</form>
<script language="javascript">
function check(form)
{
var urname=getElementbyId('myname')/*Getting the value entered in textfiled*/
if(urname != "")/*Checking whether textfiled is numm or not*/
{
alert("Hello Welcome ",+form.myname.value)
}
else
{
alert("Please Fill in the field")
}
}
</script>
</body>
</html>