function clearDefault(el) {
    if (el.defaultValue==el.value){
        el.value = ""
    }
}

function restoreValue(el) {
    if (el.value == ""){
        el.value = el.defaultValue;
    }
}

function showHide(id){
        var box = document.getElementById('box_'+id);
		var link = document.getElementById('txt_box');
        if (box.style.display == 'block'){
            box.style.display = 'none';
			link.className = 'ancora_peq ancora_fechado';
        }
        else {
            box.style.display = 'block';
			link.className = 'ancora_peq ancora_aberto';
        }
}



