
			function SetValidationSignIn()
			{
			
				ResetForm(window.document.Form2);

				window.document.Form2.elements["txtSIEMail"].required=true;
				// window.document.Form2.elements["txtSIEMail"].email=true;
				window.document.Form2.elements["txtSIEMail"].title="Username";
				window.document.Form2.elements["txtSIPassword"].required=true;
				window.document.Form2.elements["txtSIPassword"].title="Password";
				return ValidateForm(window.document.Form2);
				
			}
			
			function SetValidationNew()
			{
				ResetForm(window.document.Form2);
				window.document.Form2.elements["txtCAFirstName"].required=true;
				window.document.Form2.elements["txtCAFirstName"].title="First Name";
				window.document.Form2.elements["txtCALastName"].required=true;
				window.document.Form2.elements["txtCALastName"].title="Last Name";
				window.document.Form2.elements["txtCAEMail"].required=true;
				window.document.Form2.elements["txtCAEMail"].email=true;
				window.document.Form2.elements["txtCAEMail"].title="E-Mail Address";
				window.document.Form2.elements["txtCAPassword"].required=true;
				window.document.Form2.elements["txtCAPassword"].password=true;
				window.document.Form2.elements["txtCAPassword"].title="Password";
				window.document.Form2.elements["txtCAConfirmPassword"].required=true;
				window.document.Form2.elements["txtCAConfirmPassword"].password=true;
				window.document.Form2.elements["txtCAConfirmPassword"].title="Confirmation Password";
				return ValidateForm(window.document.Form2)
			}
			function onReturn()
			{
				if (event.keyCode == 13)
					document.all["btnSignIn"].click();
			}
