Same as week 5, assignment 1, but uses DHTML to render content in the mainFrame.

Source Code:

<!--
MODULE NAME: /javascript/week5/frame2.cfm
PURPOSE: Assignment 2, week 5.  This is the frame page.
REFERRING MODULE(S): whiteboard_iframe.cfm
DESTINATION MODULE(S):
QUERYSTRING METHODS SUPPORTED:
AUTHOR: Grant Szabo (grant@quagmire.com) Sterling Creek Software
CREATED: 12/24/02
LAST MODIFIED: 12/24/02
-->

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<frameset rows="80,*" frameborder="YES" border="0" framespacing="0">
  <frame src="http://www.quagmire.com:80/javascript/week5/nav2.cfm" name="navFrame" scrolling="NO" noresize >
  <frame src="http://www.quagmire.com:80/javascript/week5/div.cfm" name="mainFrame">
</frameset>

<noframes><body>
</body></noframes>
</html>