//	garden.js	function spaceSub( thecount	)	{		outstring="";		for(i=0; i<thecount; i++)			outstring=outstring+"&nbsp;";		return(outstring);	}		function sp( thecount	)	{	//	alert("sp()!");				var outstring=spaceSub( thecount	);		document.write( outstring);	}		//	variables defined for each "garden"-window, each file that evokes "garden.js":		//	alert(	"garden.js; myHeight: "+myHeight	);		function selfload()	{		//	alert(	"garden.js"	);			//	alert(	"garden.js; selfload:  myHeight: "+myHeight	);		resizeTo( myWidth, myHeight	);		moveTo( myLeft, myTop );	}	//-----------------------------	function leftCheck(theLeft)	{		//	unused, except in "defloadsub" 6/17/05:		var leftmax = 600;		if(	theLeft	>	leftmax	) 			theLeft=leftmax;		return(theLeft);	}		function topCheck(theTop)	{		//	unused, except in "defloadsub" 6/17/05:		var topmax = 300;		if(	theTop	>	topmax	) 			theTop=topmax;		return(theTop);	}		//-----------------------------	function	calcLeft(	mywidth	)	{		//	unused, 6/17/05:		var	myLeft= (27*(screen.width-mywidth))/32;		myLeft=leftCheck(myLeft);		return(myLeft);	}		function	calcTop(	myheight	)	{		//	unused, 6/17/05:		var	myTop= (6*(screen.height-myheight))/32;		myTop=topCheck(myTop);		return(myTop);	}	//-----------------------------------			//	reciprocating proc's for index pages, 1.html, etc.		function defloadsub(	myWidth,	myHeight	)	{	//	alert("garden.js: defloadsub();");						var theOs=getOs();				if(	getOs()=="Win"	) 			myHeight+=115;				var	browser=getBrowserVersion();		if ((verOffset=browser.indexOf("Safari"))!=-1) 		{			myWidth+=10;			myHeight+=20;		}					var myleft= (15*(screen.width-myWidth))/32;		var mytop= (15*(screen.height-myHeight))/32;		//		myleft=leftCheck(myleft);//		mytop=topCheck(mytop);					//	alert("garden.js: defloadsub(); myleft= "+myleft+",  mytop= "+mytop+"\r  myWidth= "+myWidth+",  myHeight= "+myHeight);						moveTo( myleft, mytop );		resizeTo( myWidth, myHeight);	}		function recede()	{			//	nuht=myHeight;			//	alert("garden.js: recede();   myHeight= "+myHeight+ ";   screen.height= "+screen.height );				myleft= (3*(screen.width-myWidth))/32;			//	mytop= (20*(screen.height-myHeight))/32;		mytop= (screen.height-myHeight);	//	alert("garden.js: recede();   mytop= "+mytop );		mytop= (20*mytop)/32;			//	alert("garden.js: recede(); myleft= "+myleft+",  mytop= "+mytop+"\r  myWidth= "+myWidth+",  myHeight= "+myHeight);				moveTo( myleft, mytop );	}		//-----------------------------------		function makecopynotice()	{		var osname=getOs();		var	htmlcode='<span style="font-size:11px; color:black;">';		if(osname=="Mac")	htmlcode+='<br>';		var	htmlcode=htmlcode+' &mdash; copyright &copy 2005, Innerlea.com. <b>All Rights Reserved</b>. &mdash;</span>';		document.write(htmlcode);	}		function makecopynotice(date)	{		var osname=getOs();		var	htmlcode='<span style="font-size:11px; color:black;">';		if(osname=="Mac")	htmlcode+='<br>';		var	htmlcode=htmlcode+' &mdash; copyright &copy '+date+', Innerlea.com. <b>All Rights Reserved</b>. &mdash;</span>';		document.write(htmlcode);	}			//-----------------------------------		function makeNoteInsetDiv()	//	also a possibilty: "makeUSpan()"	{		var	htmlcode;		var fontsize=12;		fontsize=adjustFontsize(	fontsize	);		var	htmlcode='<div style="font-size:'+fontsize+'px; margin-left:20px;">';		document.write(htmlcode);	}		function makepoemDiv(centered)	{	//	formatting for "poem.html"		var	htmlcode;		var style="text-align:";				if(!centered) 			style="margin-left:16px; text-align:left; font-size:"		else			style=" text-align:center; font-size:";				var osname=getOs();		if(osname=="Mac")			style+="17px; ";		if(osname=="Win")				style+="15px; ";				htmlcode='<div style="'+style+'" align="center">';					document.write(htmlcode);	}		function makeHeader()	{	//	var styleline="text-decoration: none; color: #555555;";		var header='<div style="font-size:16;text-decoration: none; color: #555555;" align="center">';				header+="<br>";		header+=("&mdash; a selection of recorded poems with commentary & essays. &mdash;<br>");		header+="</div>";				document.write(header);	}		function makeTableHeader()	{		var header="<div style=\"margin-left:.2in\">";	//	alert(header);		header+="<table width=\"75%\" bgcolor=\"#999999\" border=\"0\" >";		header+="<tr><td align=\"right\"><span ><b>";		header+="<a href=\"cover.html\" style=\"color: #336633; font-size:25px;\">";		header+="a little Garden of Recorded Verse&nbsp;&nbsp;&nbsp;&nbsp;";	//	header+="<tr><td align=\"right\">";		header+="</a></b></span ></td></tr></table></div>";		document.write(header);	}		function	makeinnerleaLink()	{	var	htmlcode='<a href="../../2.html" style="text-decoration:none; color:#CC0099;	">';		htmlcode+='<span style="font-size:15;">';		htmlcode+='<b>innerlea.com</b> </span>	</a>';		document.write( htmlcode);	}			function	makeGardenHeader()	{		makeinnerleaLink();		makeTableHeader();		makeHeader();	}