function openwindow(intPage,intValue)
{
	window.open("/popup.asp?page="+intPage+"&value="+intValue,"popup",'scrollbars=yes,menubar=no,height=300,width=580,resizable=yes,toolbar=no,location=no,status=no');	
}
function opennews(intPage,intNews)
{
	window.open("/popup.asp?page="+intPage+"&news="+intNews,"popup",'scrollbars=yes,menubar=no,height=300,width=580,resizable=yes,toolbar=no,location=no,status=no');	
}
function opendemo(strProduct)
{
	window.open("/demos/demo.asp?product="+strProduct,"popup",'scrollbars=yes,menubar=no,height=1138,width=827,resizable=yes,toolbar=no,location=no,status=no');	
}

function openimage(strPicture)
{
	window.open("images/organisation/publications/"+strPicture,"popup",'scrollbars=yes,menubar=no,height=885,width=635,resizable=yes,toolbar=no,location=no,status=no');	
}



function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;
