// Make hyperlinks in this popup window
// change the location of the opening window

$(document).ready(function()
{
	$('a').each(function()
	{
		$(this).click(function()
		{
			var sr_content_regex = new RegExp(/\/content\/[0-9a-zA-Z-]+\//);
		
			var href = $(this).attr('href');
			var spareroom_url = href.match(sr_content_regex);

			if (spareroom_url)
			{
				// Looks like another help topic, so just carry on browsing in the popup
				document.location = href.replace(sr_content_regex, '/content/plain/');
			}
			else
			{
				opener.document.location.href = href;
				window.close();
			}
			return false;					
		});
	});
});
