		function validate(){
			var digits="0123456789"
			var temp

			if (document.formMenu.liant.value=="none"){
				alert("You must select the bonding type !")
				return false
			}

			if (document.formMenu.operatia.value=="none"){
				alert("You must select the operation !")
				return false
			}
			
			if (document.formMenu.tipoperatie.value=="none"){
				alert("You must select the operation type !")
				return false
			}
			
			if (document.formMenu.tipcorp.value=="none"){
				alert("You must select the corp type !")
				return false
			}
			
			 
			return true
		}

