<!--

	function clearInput(e)
  { 
  	if(e.value=='<username>' || e.value=='<password>')
    {
    	e.value="";
    } 
  }

	function clearAll()
  { 
    this.document.login.txtUsername.value = "";    
    this.document.login.txtPassword.value = "";    
  }  
-->