elText = 'You have selected a link to a different website which will open in a new window.\n'
        +'Samaritans UK & ROI is not responsible for the content of external internet sites.';


// for external links
function el(myUrl) {
    alert(elText);
    window.open(myUrl);
    return false;
}