// JavaScript Document
var str = location.search;
var writeFrames = (str.indexOf("nowritefs")) && (top.window.length == 0);
if (writeFrames)
{
if (str =="")
{
var mainFrame = window.location + "?nowritefs";
}
else
{
var mainFrame = window.location + "&nowritefs";
}
document.write(
'<frameset rows="124,*" frameborder="NO" border="0" framespacing="0">',
  '<frame src="SPM_Top_banner.htm" name="topFrame" frameborder="no" scrolling="NO" noresize marginwidth="0" marginheight="0" >',
  '<frameset rows="*,56" framespacing="0" frameborder="NO" border="0">',
    '<frameset cols="146,*" frameborder="NO" border="0" framespacing="0">',
      '<frame src="Sub_page_side_bar.htm" name="leftFrame" frameborder="no" scrolling="NO" noresize marginwidth="0" marginheight="0">',
      '<frame src="',mainFrame,'" name="mainFrame" frameborder="no" scrolling="NO" framespacing="0" noresize>',
'</frameset>',
    '<frame src="Bottom_Nav.htm" name="bottomFrame" frameborder="no" scrolling="NO" noresize marginwidth="0" marginheight="0" framespacing="0">',
'</frameset>',
'</frameset>'
);
}
