I could help out with that if you want. I could easily place a type of webcam script within an iframe. If you' d want to do it your self then you could always use a premade iframe script that uses some javascipt that automatically adjusts it self to your needs. Kinda like this:
Code:
<script language="JavaScript">
function iFrameHeight() {
if(document.getElementById && !(document.all)) {
var h =
document.getElementById('blockrandom').contentDocu ment.body.scrollHeight
;
document.getElementById('blockrandom').style.heigh t = h;
}
else if(document.all) {
h = document.frames('blockrandom').document.body.scrol lHeight;
document.all.blockrandom.style.height = h;
}
}
</script>