function link_goto(centralFrame,leftFrame, frameHeight, frameWidth)
{
	parent.iframe.location.href=centralFrame;
	parent.leftFrame.location.href=leftFrame;
	if (frameHeight!=null & frameWidth!=null)
	{
		top.$("#IframeID").css(
			{
				height: frameHeight,
				width: frameWidth
			}
		);
	}
}