function copyContactForm(fromC,toC) {
	// Copy all elements of from to to in current document.
	var fields, i, field
	var fields = ["Name_First","Name_Last","Name_Company","Email","Tel1","Tel2","Fax","Adr1","Adr2","City","State","Zip"];
	for(i in fields) {
		field = fields[i];
		if(typeof(field) == "string") {
			fromField = fromC+"["+field+"]";
			toField = toC+"["+field+"]";
			if(document.getElementById(fromField))
				document.getElementById(toField).value = document.getElementById(fromField).value;
		}
	}
}
