
ReIFRAME();

function ReIFRAME()
{
	var obj = top.document.getElementById("contentpage");
	
	var h = 0;
    if(obj!=null)
        {
   
        if(document.body.scrollHeight>2000)
          h=document.body.scrollHeight + 35;
        else 
	  {if (document.body.scrollHeight > 550)
		h = document.body.scrollHeight + 35;
	    else
		h = 570;}

	  obj.style.height = h + "px";
      }
}
