function initIframe(){
	var _h = document.getElementById('content');
	if(_h){
		_h = _h.offsetHeight;
		var _iframes = window.parent.document.getElementsByTagName('iframe');
		for(var i = 0; i < _iframes.length; i++){
			if(document.location.href.indexOf(_iframes[i].src) != -1){
				_iframes[i].style.height = _h + 10 + 'px';
			}
		}
	}
}
if (window.addEventListener) window.addEventListener("load", initIframe, false);
else if (window.attachEvent && !window.opera) window.attachEvent("onload", initIframe);
