window.addEvent('domready', mainInit);

function mainInit()
{
	//Convert tagged links to open in new windows
	var links = $$('.newWindow');
	
	for (var i = 0; i < links.length; i++)
	{
		links[i].addEvent('click', openInNewWindow);
	}
}

function openInNewWindow()
{
	window.open(this.href);
	return false;
}

function popup(url, width, height)
{
	var options = 'width='+width+', height='+height+', scrollbars=yes';
	window.open(url, 'exhibitionPopup', options);
	return false;
}
