//<![CDATA[
		   
///////////////////////////////////////////////////////////////////////////////////////////////////////
//	popup
///////////////////////////////////////////////////////////////////////////////////////////////////////
function prepareLinks()
{
	if (!document.getElementById && !document.getElementsByTagName) return false;
	var links = getElementsByClassName(document, '*', 'popup');
	for (var i=0; i<links.length; i++)
	{
		links[0].onclick = function()
		{
			popUp(this.getAttribute('href'));
			return false;
		}
	}
}

function popUp(winURL)
{
	
	window.open(winURL, '', 'width=480,height=540,scrollbars=yes');
}

addLoadEvent(prepareLinks);

//]]>