// Writeframes
// http://www.webwell.nl

// We work out whether we are in the frameset or frame context by looking
// for a 'nowritefs' parameter
var str = location.search;
var writeFrames = (str.indexOf("nowritefs")) && (top.window.length == 0);

if (writeFrames)
{
  // We are in the frameset context - write the framset out
  if (str == "")
  {
    var mainFrame = window.location + "?nowritefs";
  }
  else
  {
    var mainFrame = window.location + "&nowritefs";
  }

document.write(
'<frameset cols="165,*" frameborder="NO" border="0" framespacing="0" marginwidth="0" marginheight="0">', 
'<frame name="fr_left" scrolling="NO" noresize src="fr_left.htm" frameborder="NO" border="0" framespacing="0" marginwidth="0" marginheight="0">',
'<frame name="mainFrame" src="' + mainFrame + ' frameborder="0" border="0" marginwidth="0" marginheight="0" scrolling="no" noresize">',
'</frameset>');
}
