// JavaScript Document

function CFill(form, fields){

	this.form = form;
	this.src = fields[0];
	this.dst = fields[1];
}

CFill.prototype.fill = function(){

	this.form[this.dst].value = this.form[this.src].value;

}