function autoclear(target,t_value){
	if(target.value==t_value){
		target.value='';	
		target.style.color='#333333';
	}
}
function resetIt(target,t_value){
	if(target.value==''){
		target.value=t_value;
		target.style.color='#999999';
	}
}