function changeColor(doit) {
	doit.className='style-me';
}
function setColor(doit) {
	doit.className='set-me';
}
function clearText(doit) {
	doit.value='';
}
function sending(doit) {
	doit.value='Sending..';
}

/*function insertInput(layerid) {
	showInput = document.getElementById(layerid);
	showInput.style.display = "block";
	return true;
}
function removeField(layerid) {
	removeInput = document.getElementById(layerid);
	removeInput.style.display = 'none';
	return false;
}*/