/***********************************************************************************************************************/
/* Created Date    Author           Comments 
/***********************************************************************************************************************/
/* 10/31/2007      Poojitha Pingili  As part of the clean up this file is created for NeighborhoodEducationalContent.aspx
/***********************************************************************************************************************/			
							
			function ValidateForm(event, obj, objID)
			{
				var sId;
				var ctl;
			
				sId = obj.id;
				sId = sId.replace(objID, "ddlFloorplan")
				ctl = document.getElementById(sId);
				if (ctl)
				{
					if (ctl.options[ctl.selectedIndex].value != "--")
					{
						location.href = ctl.options[ctl.selectedIndex].value;
						return false;
					}
				}
				return true;
			}  
		
			function disableEnter(e) 
			{
			var pK = e ? e.which : window.event.keyCode;
			return pK != 13;
			}
			document.onkeypress = disableEnter;
			if (document.layers) document.captureEvents(Event.KEYPRESS);