<html>
<head>
<script>
function resizeMe(){
var ifrm = parent.document.getElementById("iframeName");
if(ifrm){
ifrm.style.height=document.body.scrollHeight + ifrm.offsetTop;
ifrm.style.width=document.body.scrollWidth + ifrm.offsetLeft;
}
}
</script>
</head>
<body onLoad="resizeMe()">