﻿// JScript File
<!--

function resize() {
  try
  {
    var iframe = document.getElementById( 'resizeframe' );
    var domain;
    var height,
        scrollHeight,
        offsetHeight;

    if (document.height) {

        height = document.height;

    } else if (document.body) {

        if (document.body.scrollHeight) {
            height = scrollHeight = document.body.scrollHeight;
        }

        if (document.body.offsetHeight) {
            height = offsetHeight = document.body.offsetHeight;
        }

        if (scrollHeight && offsetHeight) {
            height = Math.max(scrollHeight, offsetHeight);
        }
    }

    domain = getQueryStringParam('domain');
    if (domain == '')
    {
		domain = 'www.firstforwomen.co.za';
    }

    height += 70;
    iframe.src = 'http://' + domain + '/FrameResize.htm?frameid=quoteframe&height=' + height;
  }
  catch(err){}
}

//-->


