// See http://www.searchmechanics.com/learn/srf/ for details.
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 bodyFrame = window.location + "?nowritefs";
  }
  else
  {
    var bodyFrame = window.location + "&nowritefs";
  }
  document.write(
'<frameset cols="200,*" frameborder="NO" border="0" framespacing="0">',
'<frame src="../navigatie/nav_p0.html" name="navigatie" scrolling="NO" noresize id="navigatie">',
'<frame marginHeight=0 marginWidth=00 name=textframe src="' + bodyFrame + '">',
'</frameset>',
'</frameset>');
}
