// JavaScript Document

function popup(url,width,height){
	{
   	var url = url;
	   var height = height;
	   var width = width;
	   muster1 = window.open(URL ,"Galerie","width= "+ width +" ,height= "+ height +" ,left=200,top=220,scrollbars=no");
	   muster1.focus();
	}
}

function popup_landkarte(){
	{
   	var url = "/includes/ausgabe/partners/partners_world_en.php";
	   var height = "376";
	   var width = "560";
	   muster1 = window.open(url ,"Galerie","width= "+ width +" ,height= "+ height +" ,left=200,top=220,scrollbars=no");
	   muster1.focus();
	}
}

function initPopup()
{
   if (!document.getElementsByTagName){ return; }
	var anchors = document.getElementsByTagName('a');

   for (var i=0; i<anchors.length; i++)
   {
      var anchor = anchors[i];
      var relAttribute = String(anchor.getAttribute('rel'));

      if (anchor.getAttribute('href') && (relAttribute.toLowerCase().match('sfpopup')))
      {
			anchor.onclick = function ()
			{
			   popup(anchor.getAttribute('href'), 800, 600);
			   return false;
			}
	   }
   }
}

window.onload = function()
{
   initPopup();
}