
function emptyTF(el,val){
	if(el.value==val){
		el.value="";
	}
}

function fillTF(el,val){
	if(el.value==""){
		el.value=val;
	}
}