function setFrameHeight(frameName,height,width)
{
	document.all(frameName).height = height;
	if(width != "" && width != null && width > 0)
	{
		document.all(frameName).width = width;
	}
}

function changeSize(obj,fname)
{
	obj.height = fname.document.body.scrollHeight;
}
