		function validate(){
			if(document.sendsmsform.uid.value ==""){
				alert("Please Enter Login Id");
				document.sendsmsform.uid.focus();
				return false;
			}
			if(document.sendsmsform.pass.value==""){
				alert("Please Enter Login Password");
				document.sendsmsform.pass.focus();
				return false;
			}

			//alert("ok");
			document.sendsmsform.action="http://203.142.18.35:8080/freesms/confirmlogin.jsp";
			document.sendsmsform.method="Post";
			document.sendsmsform.submit();

		}

		function reg(){
			//alert("reg page");
			document.sendsmsform.action="http://203.142.18.35:8080/freesms/registration.jsp";
			document.sendsmsform.method="Post";
			document.sendsmsform.submit();
		}