// JavaScript Document

// automatically places First Owner name in Responsible party field 
// automatically places first and last names in the ResponsibleParty textbox when first typed in
  count = 0;
  countFirst = 0;
   
	function setResParty(input) {
  		count += 1;
		if (count == 1)
		{
 		document.getElementById("ResponsibleParty").value +=  " " + input;
		}
	}	
    function setFirstName(input) {
		countFirst += 1;
		if (countFirst == 1)
		{
   		document.getElementById("ResponsibleParty").value = input;
		}		
 }
 

