// Alan Whitelaw - alan@awhitelaw.co.uk
// MSCBIKES.co.uk
// functions.js
// all rights reserved

function raw_popup(url, target, features) {
    var theWindow =
            window.open(url, target, features);
    theWindow.focus();
    return theWindow;
}
function link_popup(src, features) {
    raw_popup(src.getAttribute('href'),
    src.getAttribute('target') || '_blank',
    'location=0, statusbar=0, menubar=1, ' + features);
}