// JavaScript Document

function clf(obj) {
	


try {
	
if (!obj.oldv) {
	obj.oldv = obj.value;
	obj.value='';
	
	obj.onblur = function() { 
	
	if (!this.value) {
		this.value = this.oldv;
		this.oldv = '';
	}
	}
	
	}
	
} catch(err) {


}


}


function activateLink(id) {
	
try {

var link = document.getElementById(id);
link.className = 'active';


} catch(err) {
	
}

}
