function autoclear(el, d){
	if(el.value == d){
		el.value = '';
	}
}
function autofill(el, d){
	if(el.value == ''){
		el.value = d;
	}
}