/* Load stuff in the frames - JAVASCRIPT */
/* If a "body" file was addressed directly by a user it will notice that it is on top and call the index file with instructions to load itself in the main section of the frame */

var passed = location.search ? unescape(location.search.substring(1)) + '&' : '';

var myMain = passed ? passed.substring(0,passed.indexOf('&')) : 'main';



    if (myMain == "menu" || myMain == "header") {myMain = "main"} 

    document.write('<frameset rows="*" cols="213,*" framespacing="0"  frameborder="NO" border="0">');
    document.write('  <frame src="menu.html" name="leftFrame" scrolling="NO" noresize>');
    document.write('  <frame src="' + myMain + '.html" name="mainFrame">');
    document.write('</frameset>');

    




