It is rather easy to write the code to open another browser window when clicking on a link. You merely have to add “target=’_blank’” to the a tag.
Example to open in same browser window: Educational Technology Blog
//This is a standard link that will open in the same window
//Notice the absence of "target='_blank'"
Educational Technology Blog
Example to open in a new browser window: Educational Technology Blog
//This is a standard link that will open in a new browser window
//Notice the addition of "_blank"
Educational Technology Blog

