function make_frames(nav_page, home_page, footer_page)
{
write('\n');
}
nav_page = "nav.html";
home_page = "mn01.html";
footer_page = "foot.html";
/*if a user tries to jump directly to this page, the following if statement will send them back to the login screen. */
if(database.connected())
{
make_frames(nav_page, home_page, footer_page);
}
else { redirect("init.html");}