Hi Everyone

I've got a couple of absolutely positioned div's that frame a page. The one on the left has tables that display images. The one on the right is purely for decoration

I'd like them to be roughly the same size, so I created a little function:

Code:
<script language="javascript">
		function resizeme()
		{
		x=document.getElementById("photostrip").style.height
		y=document.getElementById("polish")
		y.style.height=x
		}
		</script>
When I try this:
Code:
<script language="javascript">
		function resizeme()
		{
		x=document.getElementById("photostrip").style.height
		y=document.getElementById("polish")
		y.innerHTML=eval(x)
		}
		</script>
y prints as undefined.

My javascript skills are close to nil . Can anyone shed some light on what I need to do?

Thanks