<html>
<head>
<title>Blur TextBox</title>
<script language="javascript" type="text/javascript">
function blure() {
var txt = document.getElementById("txt")
txt.value = "";
}
</script>
</head>
<body>
<input type="text" id="txt" value="vb_bmw - > MDP" onclick="blure();" />
</body>
</html>
<input type="text" name="user_username" size="20" class="TextBox" value="نام کاربري" onBlur="if(this.value=='') this.value='نام کاربري';" onFocus="if(this.value=='نام کاربري') this.value='';">