simply add the following few lines of javascript to your web page:
var sellectorFeature = {
openResultTarget: "_blank"
}
};
/* possible values to be as target:
"_blank" - open new window
"_self" - open in this window
"_parent" - open in parent window current of frameset
"_top" - open in main window and clear all framesets
*/
Notice:
1. Please adapt the values after the ':' to your needs.2. The above code snippet must be placed inside a javascript-script-tag as shown below:
<script type="text/javascript">
other code
Place your code here
other code
}
</script>
