<!--

// Written by PEP 27 November, 2004
// Reviewed 24 June 2007		
// *************************************************************
// Count number of non blank and numeric characters entered.
// *************************************************************

		function check_mall(passedVal) 
{		
	
		if (passedVal == "") {
		alert ("You must enter a password ")
		//passedVal.focus()
		return false}
		
		var zz = 0
				
	for (i=0; i<passedVal.length; i++)
	{if (passedVal.charAt(i) < "0") 
	{ zz = zz+1}
	if (passedVal.charAt(i) > "9") 
	{ zz = zz+1}
	}
	
	tt = passedVal.length-zz
//  Tempory aler below 18Dec05
//	alert ( " The value of zz " + zz + " numbers = " + tt)
		if (tt == 5 && zz > 4) {return true}
		else
		{
		alert ("you have entered an invalid password " + passedVal)	
		return false}
} // closing brace
// End hiding script from old browsers -->