Would you please make the necessary adjustment so that when we click on links provided in the various posts that the linked web site opens in a new browser window?
When someone adds a URL such as mine below, the format of THAT HTML determines how it is presented and what your browser does with it. The HTML (what you can't see because its encoded) includes the statement TARGET = "_blank" which causes my page to open in a new browser window.
Unless the webmaster edits everyone's posts that includes links AFTER the FACT it just how things are. Which brings back to a pet peeve of mine.
When will Sony get rid of this rather primative home brew forum software and get something more appropriate? Many packages out there, many free, or low cost for commerical use, almost all allow anyoine to include HTML without any "tricks" like the above.
Aside that links arent automatic, I kinda like the board just the way it is, its simple, its clean. It's true as BillyBoy there that there are a whole lot of other BB's out there but a whole lot of em are just way to busy, not that they can't be customized but why risk it ?
MS FrontPage webs allow a page default that provides the value of "target" whenever it is not specified in a page. I'm not sure what server extensions the forum web server uses, but it may be possible to set a forum wide default. Then every link that has something to do with the operation of the forum itself (e.g.: "reply") would have to be explicitly set to not open a new window.
When you see an explicit TARGET = "_Default" this is referencing the page default.
If you want all the links on your page to open in a new window you don't have to modify every one. It's a simple matter to apply a default setting for the page so that all the links behave the same way. Here's how...
Insert the following code...
<base target="_blank">
...into the header of your document's HTML (i.e. anywhere between the <head> and </head> tags but not inside any other pairs of tags already there).