function getContainerHeight()
{
	return document.getElementById("container").clientHeight + 20;
}

function initCrossDomainIFrame(partner, height)
{
    var ifrm = document.createElement("iframe");
    ifrm.setAttribute("name", "CrossDomainIFrame");
    ifrm.setAttribute("id", "CrossDomainIFrame");
    ifrm.style.width = 100+"%";
    ifrm.style.height = 0+"px";
    ifrm.frameBorder = "0";

    switch(partner)
    {
        case "Runtastic":
            ifrm.setAttribute("src", "http://runtastic.com/shops/proxy.html?height="+height);
            break;
        case "ClimbersParadise":
            ifrm.setAttribute("src", "http://www.climbers-paradise.com/fileadmin/template/scripts/proxy.html?height="+height);
            break;
    }

    document.body.appendChild(ifrm);
}
