	function clear_text(text){
	
		var input = document.getElementById(text);

		if(input.value == "Vendor" || input.value == "Name" || input.value == "Mfg Part #"){
			input.value = "";					
		}

	}
	
	
	function clear_vid(){
		var input = document.getElementById("searchVendor");
		
		if(input.value == ""){
			document.getElementsByName('vid')[0].value = "";
		}
	}
	
	function restore_text(text){
	
		var input = document.getElementById(text);

		if(input.value == ""){
			if(input.id == "searchVendor"){
				input.value = "Vendor";					
			}
			else if(input.id == "searchName"){
				input.value = "Name";					
			}
			else if(input.id == "searchModelNo"){
				input.value = "Mfg Part #";					
			}
		}

	}
	