//Search CBJ
var sval = "Search CBJ";
function clearSearch(el){
	if(el.value==sval) {
		el.value='';
	}
}
function restoreSearch(el){
	if(el.value==='') {
		el.value=sval;
	}
}
//-->
