/***********************************************************************************
*
* $Workfile: redirectToContent.js $ 
* SafeFile : $Archive: /ContentSystem/HelpSystem/Source/HelpSystemWeb/Scripts/redirectToContent.js $
* 
* $Revision: 0 $ 
*
* Purpose : 
*
* Modified : $Author: $ $Modtime: $
*
* Initial version by Alexey Kropotin (Hound) on Oct, 2004
* Copyright 2005 Saxo Bank. All rights reserved.
***********************************************************************************/

function redirectToContent()
{
	var link = new String(document.referrer);
	if(link.match(/page=toc/i) && link.match(/display/i))
	{
		var res = new String("");
		if (link.match(/page=toc&/i))
			res = link.replace(/page=toc&/i, "");
		else
			res = link.replace(/page=toc/i, "");
	    res = res.replace(/Help.aspx/i, "Content.aspx");
		window.open(res, "content");
	}
}
