<!--

var Fenster = null;

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

  for(i=0; i<a.length; i++)
  {

	if(a[i].getAttribute("rel") && a[i].getAttribute("rel") == "window420")
    {
      a[i].onclick = function()
      {
        url = this.getAttribute("href");
        window.open(url,'window420','width=440,height=330,scrollbars=yes');
        return false;
      }
    }

	if(a[i].getAttribute("rel") && a[i].getAttribute("rel") == "window512")
    {
      a[i].onclick = function()
      {
        url = this.getAttribute("href");
        window.open(url,'window512','width=512,height=384,scrollbars=yes');
        return false;
      }
    }

	if(a[i].getAttribute("rel") && a[i].getAttribute("rel") == "window640")
    {
      a[i].onclick = function()
      {
        url = this.getAttribute("href");
        window.open(url,'window640','width=640,height=480,scrollbars=yes');
        return false;
      }
    }




	}
}
 
window.onload = applyPopups;
//-->