﻿// JavaScript Document

function transformAsPopupLink(e)
{
	var name = e.readAttribute('windowName') || 'anno';
	var width = e.readAttribute('windowWidth') || 800;
	var height = e.readAttribute('windowHeight') || 700;
	
	e.on('click', function(ee) {
		var href = e.readAttribute('href');
		var options = new Template('width=#{width}, height=#{height}, scrollbars=1, resizable=yes').evaluate({width: width, height: height});
		var win = window.open(href, name, options);
		win.focus();
		Event.stop(ee);
	});
}

document.on('dom:loaded', function()
{
	$$('A.popup').each(transformAsPopupLink);
});
