function passwordMeter(passwd,fied1,fied2,fied3,fied4,fied5,fied6)
{
	var description = new Array();
	
	description[0] = "<table width=100% cellspacing=0 cellpadding=0><tr><td><table width=100% cellpadding=0 cellspacing=2><tr><td height=4 width=30 bgcolor=#cccccc></td><td height=4 width=120 bgcolor=tan></td></tr></table></td></tr><tr><td>   <b>"+fied1+"</b></td></tr></table>";
	description[1] = "<table width=100% cellspacing=0 cellpadding=0><tr><td><table width=100% cellpadding=0 cellspacing=2><tr><td height=4 width=60 bgcolor=#990000></td><td height=4 width=90 bgcolor=tan></td></tr></table></td></tr><tr><td>   <b>"+fied2+"</b></td></tr></table>";
	description[2] = "<table width=100% cellspacing=0 cellpadding=0><tr><td><table width=100% cellpadding=0 cellspacing=2><tr><td height=4 width=90 bgcolor=#990099></td><td height=4 width=60 bgcolor=tan></td></tr></table></td></tr><tr><td>   <b>"+fied3+"</b></td></tr></table>";
	description[3] = "<table width=100% cellspacing=0 cellpadding=0><tr><td><table width=100% cellpadding=0 cellspacing=2><tr><td height=4 width=120 bgcolor=#3535ac></td><td height=4 width=30 bgcolor=tan></td></tr></table></td></tr><tr><td>   <b>"+fied4+"</b></td></tr></table>";
	description[4] = "<table width=100% cellspacing=0 cellpadding=0><tr><td><table width=100% cellpadding=0 cellspacing=2><tr><td height=4 width=100% bgcolor=#5050da></td></tr></table></td></tr><tr><td>   <b>"+fied5+"</b></td></tr></table>";
	description[5] = "<table width=100% cellspacing=0 cellpadding=0><tr><td><table width=100% cellpadding=0 cellspacing=2><tr><td height=4 width=100% bgcolor=tan></td></tr></table></td></tr><tr><td>   <b>"+fied6+"</b></td></tr></table>";

	var base = 0
	var combos = 0

	if (passwd.match(/[a-z]/))
	{
		base = (base+26);
	}

	if (passwd.match(/[A-Z]/))
	{
		base = (base+26);
	}

	if (passwd.match(/\d+/))
	{
		base = (base+10);
	}

	if (passwd.match(/[>!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~]/))
	{
		base = (base+33);
	}
	combos=Math.pow(base,passwd.length);

	if(combos == 1)
	{
		strVerdict = description[5];
	}
	else if(combos > 1 && combos < 1000000)
	{
		strVerdict = description[0];
	}
	else if (combos >= 1000000 && combos < 1000000000000)
	{
		strVerdict = description[1];
	}
	else if (combos >= 1000000000000 && combos < 1000000000000000000)
	{
		strVerdict = description[2];
	}
	else if (combos >= 1000000000000000000 && combos < 1000000000000000000000000)
	{
		strVerdict = description[3];
	}
	else
	{
		strVerdict = description[4];
	}

	document.getElementById("pass_met").innerHTML="";
	document.getElementById("pass_met").innerHTML= (strVerdict);

}
