﻿		function Validate1()
	{
		
		if (this.frm1.txtnam.value=="" || this.frm1.txtcity.value=="" || this.frm1.txtstate.value=="" || this.frm1.txtpin.value=="" || this.frm1.txtphone.value==""  || this.frm1.txtsuggestion.value=="" )
			{
				alert ("Some fields are marked Compulsory. Please enter some information in those fields!")
				return false;
			}  
			if (this.frm1.txtadr1.value=="" && this.frm1.txtadr2.value=="" )
			{
				alert ("Please Enter atleast one Address Field!")
				return false;
			}
			}
