function copyshipper(f, jsStr) { //v2.0
  if (jsStr) {
    // alert("Got Condition");
	// Because of the names with '-' chars in them, 
	// refer to the elements by number.
	for (var i=0; i<8; i++) {
	  f.elements[i+9].value = f.elements[i].value;
	}
  }
  return;
}
