you could combine AllisonC's idea with window.open
function:
http://www.w3schools.com/jsref/met_win_open.asp
function openWin(url) {
myWindow = window.open(url, '', 'width=800,height=400');
myWindow.focus();
}
And then on each link you call the openWin function with the right social net url.