Hi,
You should update your theme. The current version is 1.6 while you are using 1.3. Lot of improvements. You can download the update from Themeforest , but just please be aware that the theme update will overwrite all the current template and css files, so please make a backup first.
To change the way links open, you will need to edit header.php lines 128, 129 that look like
if($twitter = avia_get_option('twitter')) echo "<li class='twitter'><a href='http://twitter.com/".$twitter."'>Twitter</a></li>";
if($facebook = avia_get_option('facebook')) echo "<li class='facebook'><a href='".$facebook."'>Twitter</a></li>";
to look like
if($twitter = avia_get_option('twitter')) echo "<li class='twitter'><a href='http://twitter.com/".$twitter."' target='_blank'>Twitter</a></li>";
if($facebook = avia_get_option('facebook')) echo "<li class='facebook'><a href='".$facebook."' target='_blank'>Twitter</a></li>";
The
target='_blank'
inside an anchor tag <a href will open the link in a new window.
Thanks,
Nick