﻿// iframe resize
function iecompattest()
{
  return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
function cmdResizeIfr()
{
    if (document.getElementById('ifr') != null)
    {
        var ifrHeight=iecompattest().clientHeight - 93;
        document.getElementById('ifr').style.height=ifrHeight + 'px';
        document.getElementById('ifr').style.width='730px';
    }
}