// JavaScript Document
function applyPopups()
{
  a = document.getElementsByTagName("a");

  for(i=0; i<a.length; i++)
  {
    if(a[i].getAttribute("target") && a[i].getAttribute("target") == "_blank")
    {
	if(a[i].getAttribute("title") && a[i].getAttribute("title") == "popup")
	{
      a[i].onclick = function()
      {
        url = this.getAttribute("href");
        window.open(url,'popup','width=460,height=320,scrollbars=yes,resizeable=yes,left=150,top=150,dialog=yes');
        return false;
      }
    }
	}
  }
}
 
window.onload = applyPopups;
