<!--
// Author : Mark Richardson 2006
// This function changes the location of two frames at the same time.
function frameLinks(page1, page2)
{
  parent.title_frame.location.href = page1;
  parent.content_frame.location.href = page2;
}
//-->