function changeStar(whichStar, theinput) {
	if (theinput.value == "") {
		whichStar.src = "/webready/reqStar.jpg";			
	} else {
		whichStar.src = "/webready/noReqStar.jpg";
	}
}
	
function signatureName()
{
	var firstnameValue = document.entryForm.firstname.value;
	var lastnameValue = document.entryForm.surname.value;
	
	document.entryForm.agreedName.value = firstnameValue + " " + lastnameValue;
}
	
function signatureCompany(theInput)
{
 	document.entryForm.agreedCompany.value = theInput.value;
}
	

	
function clearOther()
{
	document.entryForm.otherWork.value = "";
}
