Sure - here it is (sorry I guess I didn't post it correctly yesterday)
<html>
<head>
<title>Your Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="114,*" frameborder="NO" border="0" framespacing="0">
<frame name="topFrame" scrolling="AUTO" noresize src="WBtop.htm" >
<frameset cols="298,500,*" frameborder="NO" border="0" framespacing="0" rows="*">
<frame name="leftFrame" noresize scrolling="AUTO" src="leftnav.htm">
<frame name="mainFrame" noresize scrolling="AUTO" src="logo.htm">
<frame name="rightframe" scrolling="AUTO" src="rightside.htm">
</frameset>
</frameset>
<noframes>
<body bgcolor="#000000" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
</body>
</noframes>
</html>
On
<frameset cols="298,500,*"
the third item (*) is the wildcard. the source document for this frame (<frame name="rightframe "src="rightside.htm">) has nothing but a black background to match the other frames.
I hope this helps.