function openInNewTab(url) {
var newTab = window.open(url, '_blank');
newTab.focus();
}


Kullanım Örneği: openInNewTab("http://www.google.com");