	function clearField(whichfield) {
		switch(whichfield) {
			case 1: {
				var x = document.shortForm.fname.value;
				if(x == "Name") {
					document.shortForm.fname.value = "";
				}
				break;
			}
			case 2: {
				var x = document.shortForm.fcompany.value;
				if(x == "Company") {
					document.shortForm.fcompany.value = "";
				}
				break;
			}
			case 3: {
				var x = document.shortForm.fphone.value;
				if(x == "Phone") {
					document.shortForm.fphone.value = "";
				}
				break;
			}
			case 4: {
				var x = document.shortForm.femail.value;
				if(x == "E-mail") {
					document.shortForm.femail.value = "";
				}
				break;
			}
		}
	}
	
	function resetField(whichfield) {
		switch(whichfield) {
			case 1: {
				var x = document.shortForm.fname.value;
				if(x == "") {
					document.shortForm.fname.value = "Name";
				}
				break;
			}
			case 2: {
				var x = document.shortForm.fcompany.value;
				if(x == "") {
					document.shortForm.fcompany.value = "Company";
				}
				break;
			}
			case 3: {
				var x = document.shortForm.fphone.value;
				if(x == "") {
					document.shortForm.fphone.value = "Phone";
				}
				break;
			}
			case 4: {
				var x = document.shortForm.femail.value;
				if(x == "") {
					document.shortForm.femail.value = "E-mail";
				}
				break;
			}
		}
	}
