Se vuoi ottenere un iframe che si estende al cento x cento della pagina:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<style type="text/css">
#cont_left_footer{
overflow:auto;
margin-left:10px;
position:absolute;
top:190px;
bottom:0px;
width:260px;
height:;
background:#99FF00;
}

body{top:0px; left:0px;}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />


<title>Documento senza titolo</title>
</head>

<body>

<div id="cont_left_footer">
<frameset rows="100%,*" cols="100%" frameborder="0 framespacing="0" border="0">
<iframe src="http://gogle.it" width="100%" height="100%" style="border:none" frameborder="0" border="none" framespacing="0" scrolling="no"></iframe>
</frameset>
</div>

</body>
</html>


_____________________________

In questo modo ottieni un iframe che si estende al 100% della pagina, se non è quello che intendevi è per colpa dell'orario e sono un pò stonato
_____________________________
Se non funziona quello che ti ho dato prova questo:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="100%,*" cols="100%" frameborder="no" framespacing="0" border="0">
<frame name="XYZZY2" scrolling="auto" src="http://google.it" noresize>
<frame name="XYZZY" scrolling="no" noresize>
</frameset>
</html>