function disp_criteria(name)
{
	var Dispobj = document.getElementById('criteria');
	
	switch(name)
    {
		
		case 'Username_tk' :
				Dispobj.style.background = '#c3ddf8';
				Dispobj.innerHTML = '<h1 id="cri_h1">Username</h1>';
				Dispobj.innerHTML += '<ul><li>Only Letters and Numbers are allowed</li><li>Special Characters are not allowed</li><li>Maximum of 20 characters</li><ul>';
				break;
				
		case 'Email_tk' :
				Dispobj.style.background = '#dde5e8';
				Dispobj.innerHTML = '<h1 id="cri_h1">Email</h1>';
				Dispobj.innerHTML += '<ul><li>Provide Valid Email address.</li><li>we will send an email with activation link</li><ul>';
				break;
				
		case 'Password_tk' :
				Dispobj.style.background = '#FFEEDD';
				Dispobj.innerHTML = '<h1 id="cri_h1">Password</h1>';
				Dispobj.innerHTML += '<ul><li>Minimum of 8 characters in length.</li><ul>';
				break;
				
		case 'Email_Forgot_Pass' :
				Dispobj.style.background = '#c3ddf8';
				Dispobj.innerHTML = '<h1 id="cri_h1">Forgot Password ?</h1>';
				Dispobj.innerHTML += '<ul><li>Provide your tukda Email</li><li>We will send you an Email with link to reset your password. </li><ul>';
				break;
				
		default:
				Dispobj.style.background = 'none';
				break;
	
	}
}