
//ReIFRAME();

function ReIFRAME()
{
	var obj = top.document.getElementById("contentpage");
	if(obj!=null)
	{
	  var h = 0;
	  if (document.body.scrollHeight >= 820)
	    	h = document.body.scrollHeight + 20;
	  else
	   	h = 840;

	  obj.style.height = h + "px";
	 }
	//parent.document.all.MyFrame.height = h +"px";
}

