
				function setIframeHeight(iframeName) {
					var iframe = document.getElementById(iframeName);
				/*var iframeEl = document.getElementById? document.getElementById(iframeName): document.all? document.all[iframeName]: null;
				if (iframeEl) {
				iframeEl.style.height = "auto";
				// need to add to height to be sure it will all show
					var h = alertSize(iframeName);
					iframeEl.style.height = (-10) + "px";
					}*/
					
					if (iframe.contentWindow.document.body) {
						// IE7
						iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 0 + "px";
					}
					
				}
				
				function alertSize(frameId) {
					var myHeight = 0;
					frame = document.getElementById(frameId);
					if( typeof( window.innerWidth ) == 'number' ) {
					//Non-IE
						var getFFVersion=navigator.userAgent.substring(navigator.userAgent.indexOf("Firefox")).split("/")[1];
						var FFextraHeight=parseFloat(getFFVersion)>=0.1? 16 : 0;
						myHeight=frame.contentDocument.body.offsetHeight+FFextraHeight;
					} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
					//IE 6+ in 'standards compliant mode'
					
						innerDoc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
						myHeight= innerDoc.body.scrollHeight + 10;
					//myHeight = document.documentElement.clientHeight;
					} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
					//IE 4 compatible
					myHeight = document.body.clientHeight;
					}
					//window.alert( 'Height = ' + myHeight );
					return myHeight;
				}
		
		
				var strOut;
				strOut = "<iframe id=\"iframetext\" src =\"http://www.carlocab.com/advertise/option1.php\"";
				strOut = strOut + " scrolling=\"no\" marginwidth=\"0\" marginheight=\"0\" ";
				strOut = strOut + "frameborder=\"0\" style=\"width:280px;\"";
				strOut = strOut + "onload=\"setIframeHeight('iframetext')\" >";
				strOut = strOut + "<p>Your browser does not support iframes.</p>";
				strOut = strOut + "</iframe>";
				
				document.write(strOut);
			