// File common-frames.js
// Jesse M. Heines, UMass Lowell CS, heines@cs.uml.edu
// updated by JMH on January 29, 2002 at 08:12 AM
// updated by JMH on February 8, 2009 at 10:39 AM
//    updated frameset rows="75,*" to frameset rows="110,*"

// N.B. file common.js must be included *before* this file

if ( window.parent.location != window.location )
  window.parent.location = document.location ;

document.writeln( '<frameset rows="*" cols="155,*" border="0">' ) ;
document.writeln( '  <frameset rows="110,*" cols="*" border="0">' ) ;
document.writeln( '    <frame name="UMLlogo" noresize scrolling="no" src="' + strSiteHome + '/umllogo.htm">' ) ;
document.writeln( '    <frame name="Toolbar" noresize scrolling="auto" src="' + strShortCourseNo + 'toolbar.htm">' ) ;
document.writeln( '  </frameset>' ) ;
document.writeln( '  <frameset rows="50,*" cols="*" border="0">' ) ;
document.writeln( '    <frame name="Titlebar" noresize scrolling="no" src="' + strSiteHome + '/titlebar.htm">' ) ;
document.writeln( '    <frame name="Main" noresize scrolling="auto" src="index.htm">' ) ;
document.writeln( '  </frameset>' ) ;
document.writeln( '  <noframes>' ) ;
document.writeln( '    <body>' ) ;
document.writeln( '      <p>I\'m sorry, but this web page requires frames. Your browser does not ' ) ;
document.writeln( '      appear to support them and therefore this page cannot be displayed. </p>' ) ;
document.writeln( '    </body>' ) ;
document.writeln( '  </noframes>' ) ;
document.writeln( '</frameset>' ) ;
