// Write.js for Self Referencing Pages
//
// ------------------------------------------------------------------------
// 
// ------------------------------------------------------------------------

// 

    
//////////////////////////////////////////////////////////////////////////////////
//
// 
//



var str = location.search;
var writeFrames = (str.indexOf("nowritefs")) && (top.window.length == 0);
if (writeFrames)
{
  if (str == "")
  {
    var item = window.location + "?nowritefs";
  }
  else
  {
    var item = window.location + "&nowritefs";
  }
  document.write(
  
  '<frameset rows="100,*" framespacing="0" border="0" frameborder="0">',
  '<frame name="top" scrolling="no" noresize target="contents" src="topbanner.htm" marginwidth="0" marginheight="0">',
  
 '<frameset cols="*,800,*">',

 '<frame src="blank.htm" scrolling="no">',


  '<frameset cols="188,*">',
  '<frame name="left" target="item" scrolling="no" src="menu.htm">',
  '<frame name="item" src="',item,'" scrolling="auto" target="_self" marginwidth="0" marginheight="0">',
  '</frameset>',
  '</frameset>'
    );
   }



//////////////////////////////////////////////////////////////////////////////////
//
// 
//

