function stretchIt() {	var objects = document.getElementsByTagName('object')
	objectTotalHeight= parseInt(objects[objects.length-1].height) + parseInt(objects[objects.length-2].height) + parseInt(objects[objects.length-3].height)
	var content = document.getElementById("content")	var contentHeight = content.offsetHeight-56	//if (MMSIE) contentHeight=contentHeight+2	if (/safari/.test(ua)) contentHeight=contentHeight+2	var shim1 = document.getElementById("shim1")	var shim2 = document.getElementById("shim2")	shim1.height = (contentHeight-objectTotalHeight)/2	shim2.height = (contentHeight-objectTotalHeight)/2}window.onload=stretchIt