// Copyright 2007 JP7
function refreshDateStyle(f,event){
	if(event=='blur'){
		if(parseInt(f.value)>0||f.value=='00'){
			f.style.color='#000'
			f.style.fontStyle='normal'
		}else{
			f.style.color='#ccc'
			f.style.fontStyle='italic'
			f.value = f.getAttribute('helpvalue');
		}
	}else{
		f.style.color='#000'
		f.style.fontStyle='normal'
		if(parseInt(f.value)>0||f.value=='00'){
	
		}else{
			f.value=''
		}
	}
}
