function resizeIframe() {
    try {
        var currentLocation = location.href;
        var list = currentLocation.split('#');
        if(list.length == 2) {
            var parameter = list[1];
            if(parameter.match('horoscope') != null && parameter.match('horoscope').length > 0) {
                var height = parameter.replace("horoscope","");
                document.getElementById('IF_HOROSCOPE').height = height;
            }
        }
        setTimeout('resizeIframe()', 500);
    } catch(e) {}
}
setTimeout('resizeIframe()', 500);


