// JavaScript Document
// add this to the href ... onclick="launchit('http://destination.com'); return false;"
function launchit(url) {
    window.open(url);
}
