<html> <head> <script language="JavaScript1.1" type="text/javascript"> FRAMECOUNT=0; /* ========================================================================== */ function append(target){ FRAMECOUNT=FRAMECOUNT+1; document.write('<iframe id="buffer' + FRAMECOUNT ); document.write( '" name="buffer' + FRAMECOUNT + '" src="' + target + '" '); document.write('onload="resizeIframe(\'buffer' + FRAMECOUNT + '\')"></iframe>\n'); } /* ========================================================================== */ function resizeIframe(iframeId) { resizeIframe2(iframeId); resizeIframe2(iframeId); } /* ========================================================================== */ function resizeIframe2(iframeId ) { if ( window.frames[iframeId] ) { var CurrentIframe = document.getElementById? document.getElementById(iframeId): null; CurrentIframe.setAttribute('width', '100%'); var oDoc = CurrentIframe.contentWindow || CurrentIframe.contentDocument; if (oDoc.document) { oDoc = oDoc.document; } height=oDoc.body.scrollHeight ; /* add a bit for Opera browser */ if ( height == 0 ){ CurrentIframe.setAttribute('height', ""); } else{ CurrentIframe.setAttribute('height', "" + height); } } } /* ========================================================================== */ function loadthem(){ //document.write('<xmp>' ); append("fables/Androcles.html"); append("fables/Avaricious_and_Envious.html"); append("fables/Belling_the_Cat.html"); append("fables/Hercules_and_the_Waggoner.html"); append("fables/Jupiter_and_the_Monkey.html"); append("fables/The_Ant_and_the_Grasshopper.html"); append("fables/The_Bald_Man_and_the_Fly.html"); append("fables/The_Bat_and_the_Weasels.html"); //document.write('' ); } /* ========================================================================== */ //]]> merged document