/*
Copyright (c) 2010, [c3] Art & Intelligence - Some rights reserved to the developers!
Licenced under http://creativecommons.org/licenses/by-sa/3.0/
*/

//Developer: Alexandre Atoji crono_qc@hotmail.com [be.yond webstudio]
function swap(input, match, replace) {
	if (input.value == match) {
		input.value = replace;
	}
}
