var password="NU4U";																						//The Password

function check(pw){
	if(pw.value==password){
		document.location.href='consultants_home.html';					//The Protected URL
	}
	else{
		alert('Sorry, that password is incorrect.');									//Wrong Password Message
		pw.value='';
		}
	}
