// Javascript Hack For link with rel='external'
$(function(){
	(function(){
		if (!document.getElementsByTagName) return;

		var anchors = document.getElementsByTagName("a");
		
		for (var i=0; i<anchors.length; i++)
		{
			var anchor = anchors[i];
			if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") anchor.target = "_blank";
		}
	})();

	$('.popup').click(function()
	{
		window.open(this.href,'Evax_VIP','width=900,height=700,scrollbars=1');
		return false;
	});

	$('.lpopup').click(function()
	{
		window.open(this.href,'Evax_VIP','width=500,height=468,scrollbars=1');
		return false
	});
});