function props(obj,objName){
  var result="";
  for (i in obj) {
    result +=  objName+ "." +i+ "=" +obj[i]+ "\n";
  }
  return result;
}

