﻿// JScript File
function SetiFrameHeight()
{
    window.setTimeout('zSetiFrameHeight()', 350);
}

function zSetiFrameHeight()
{
    var ht;
	try 
	{
	    if(document.getElementById && !(document.all))
	    {
	        ht = document.getElementById('contentframe').contentDocument.body.scrollHeight;
		    document.getElementById('contentframe').style.height = ht;
        }
	    else if(document.all)
	    {
		    ht = document.frames('contentframe').document.body.scrollHeight;
		    document.all.contentframe.style.height = ht;
	    }
    }
    catch (e) {}
}
