function targetBlank2(object,target) {

// Get the URL 
link = object.href;

window.open(link,target);
}

function targetBlank(object,target) {

// Get the URL 
link = object.href;

// If target == "_self", don't ask confirmation from user
if(target=='_self') {
window.open(link,target);
}
else {

// Ask confirmation
if (confirm("U heeft een externe link ("+link+") aangeroepen.\n\nWilt u een nieuw venster openen en verder gaan?") ) {
// Open the page
window.open(link,target);
}
else {
// Alert the user the page didn't opened
alert("De pagina is niet geopend!");
}
}
}
