function doPopups()
{
	if (!document.getElementsByTagName) return false;
  	
    //begin van functie
    var links=document.getElementsByTagName("a");
  	for (var i=0; i < links.length; i++) 
  	{
  		if (links[i].className.match("popup"))
		  {
    		links[i].onclick=function()
	  		{
        		window.open(this.href,"","width=600,height=400,scrollbars=auto");
        		return false;
      	}
    	}
  	}
}
addLoadEvent(doPopups);
