\n');
}
// lien vers le site carte SWF > site SPIP
var newwindow = "";
function openArticle (articleID) {
// URL a mettre a jour
lnkURL = "http://www.atlansevre.fr/spip.php?article"+articleID;
if (!window.opener || window.opener.closed) {
if (!newwindow || newwindow.closed) {
newwindow = window.open(lnkURL, "Atlanserve");
} else {
newwindow.location.href = lnkURL;
newwindow.focus();
}
} else {
window.opener.location = lnkURL;
window.opener.focus();
}
}
//-->