I would like to create _blank with js HTML DOM, is it correct?
var a = document.createElement('a');
a.appendChild(document.createTextNode(contacts[i][j]));
a.setAttribute("href","http://www.facebook.com/", contacts[i][j],"target","_blank" );
td.appendChild(a);