function Focus() {
  var bodyObj = document.getElementsByTagName('body');
  if(bodyObj[0].clientWidth < 1000){
  	return;
  }
  
  var obj = document.getElementById('id');
  if(obj != null){
  	obj.focus();
  } else {
  	obj = document.getElementById('txt');
  	obj.focus();
  }
}