function fn_onSubmitBirth()
		{
			var p
			p=true
	
		/******************Checking for male**********************/
			if(fn_trim(document.getinfo.m_name.value)==""){ alert("Please Enter Male Name");document.getinfo.m_name.focus();p=false;return false}
		
			if(document.getinfo.m_day.options[document.getinfo.m_day.selectedIndex].value==-1){alert("Please Select Day Of Birth" );document.getinfo.m_day.focus();p=false;return false}
			if(document.getinfo.m_month.options[document.getinfo.m_month.selectedIndex].value==-1){ alert("Please Select Month Of birth" );document.getinfo.m_month.focus();p=false;return false}
			if(document.getinfo.m_year.options[document.getinfo.m_year.selectedIndex].value==-1){ alert("Please Select Year Of Birth" );document.getinfo.m_year.focus();p=false;return false}
		
			if(document.getinfo.m_hour.options[document.getinfo.m_hour.selectedIndex].value==-1){ alert("Please Select Birth Hour" ); document.getinfo.m_hour.focus();p=false;return false}
			if(document.getinfo.m_minute.options[document.getinfo.m_minute.selectedIndex].value==-1){ alert("Please Select Birth Minute" ); document.getinfo.m_minute.focus();p=false;return false}
			if(document.getinfo.m_second.options[document.getinfo.m_second.selectedIndex].value==-1){alert("Please Select Birth Seconds" ); document.getinfo.m_second.focus();p=false;return false}

			if(document.getinfo.h_m_zone_id.value=="" || document.getinfo.h_m_state_id.value==""){alert("Please Use Place Finder");  document.anchors.item("m_locator").click();p=false; return false }
			
	/***************************************Checking for correctness*********************************************/
						
			if(isValidDate(document.getinfo.m_month.options[document.getinfo.m_month.selectedIndex].value ,document.getinfo.m_day.options[document.getinfo.m_day.selectedIndex].value ,document.getinfo.m_year.options[document.getinfo.m_year.selectedIndex].value)==false){alert("Invalid Date Of Birth");p=false;return false;}

		/******************Checking for female**********************/
			if(fn_trim(document.getinfo.f_name.value)==""){ alert("Please Enter Female Name");document.getinfo.f_name.focus();p=false;return false}
		
			if(document.getinfo.f_day.options[document.getinfo.f_day.selectedIndex].value==-1){alert("Please Select Day Of Birth" );document.getinfo.f_day.focus();p=false;return false}
			if(document.getinfo.f_month.options[document.getinfo.f_month.selectedIndex].value==-1){ alert("Please Select Month Of Birth" );document.getinfo.f_month.focus();p=false;return false}
			if(document.getinfo.f_year.options[document.getinfo.f_year.selectedIndex].value==-1){ alert("Please Select Year Of Birth" );document.getinfo.f_year.focus();p=false;return false}
		
			if(document.getinfo.f_hour.options[document.getinfo.f_hour.selectedIndex].value==-1){ alert("Please Select Birth Hour" ); document.getinfo.f_hour.focus();p=false;return false}
			if(document.getinfo.f_minute.options[document.getinfo.f_minute.selectedIndex].value==-1){ alert("Please Select Birth Minute" ); document.getinfo.f_minute.focus();p=false;return false}
			if(document.getinfo.f_second.options[document.getinfo.f_second.selectedIndex].value==-1){alert("Please Select Birth Seconds" ); document.getinfo.f_second.focus();p=false;return false}

			if(document.getinfo.h_f_zone_id.value=="" || document.getinfo.h_f_state_id.value==""){alert("Please Use Place Finder");  document.anchors.item("f_locator").click();p=false; return false }
			
	/***************************************Checking for correctness*********************************************/
			
			
			if(isValidDate(document.getinfo.f_month.options[document.getinfo.f_month.selectedIndex].value ,document.getinfo.f_day.options[document.getinfo.f_day.selectedIndex].value ,document.getinfo.f_year.options[document.getinfo.f_year.selectedIndex].value)==false){alert("Invalid Date Of Birth");p=false;return false;}
	
	/**************************************end for *************************************/

			if(p==true)
			{
				return true
			}
	
}


	