<!--
var isIE = navigator.userAgent.search("MSIE") > -1;
var isIE7 = navigator.userAgent.search("MSIE 7") > -1;
var isFirefox = navigator.userAgent.search("Firefox") > -1;
var isOpera = navigator.userAgent.search("Opera") > -1;
var isSafari = navigator.userAgent.search("Safari") > -1;//Safari,google
var isMozilla = ((typeof document.implementation!="undefined")&&(typeof document.implementation.createDocument!="undefined")&&(typeof HTMLDocument!="undefined"));
var isNetscape = (navigator.appName=="Netscape" && navigator.appVersion.charAt(0)=="4");
var changeSelf;
	function reinitIframe(){
			var iframe = document.getElementById("Inside");
			try{
				var bHeight = iframe.contentWindow.document.body.scrollHeight;
				if(iframe.height<1000){
					iframe.height =  bHeight;
				}
			}catch (ex){}
				if(iframe.height<=1100){
					iframe.height =1500;
				}
	}
window.setInterval("reinitIframe()",10);
-->