function alertF(str,obj,mode){
	alert(str);
	obj.focus();
	if(typeof(obj)=='text')obj.select();
	if(mode==0)return;
	else return false;
}
