Lo utilize de esta forma, gracias a todos por sus respuestas.
Código [Seleccionar]
<html>
<head>
<script type="text/javascript">
function validar(user){
var expregular = /(?=^.{8}$).*$/;
if (expregular.test(user)){
alert ('Ingresando');
} else {
alert ('Username Incorrecto');
}
}
function valida(pass){
var expregular2 = /(?=^.{8}$)(?=.*[0-9])(?=.*[% & # $])(?=.*[A-Z])(?=.*[a-z]).*$/;
if (expregular2.test(pass)){
alert ('Ingresando');
} else {
alert ('Password Incorrecto');
}
}
</script>
</head>
<body bgcolor="#000000">
<font color="#FFFFFF">
<body>
<form>
<center>
<label> Username: </label>
<Input type= "Text" name = "user">
<br>
<label> Password: </label>
<Input type= "Text" name = "pass">
</br>
<Input type= "Button" name= "BotonEntrar" Value="Entrar" onclick = "validar(user.value);valida(pass.value)">
</center>
</form>
</body>
</html>