			function mtest()	{	alert('inside: innerlea.js()');	}		var local=false;	//	this indicates whether online or local		function setCoverWindow()	{	//	alert("setCoverWindow");		myWidth=	520;		myHeight=	670;						myLeft=3*(screen.width-myWidth)/8;		myTop=3*(screen.height-myHeight)/8;		resizeTo( myWidth, myHeight);		moveTo( myLeft, myTop );		location="0.html";	}		function setBlogWindow()	{	//	location="1.html";	//	alert("setBlogWindow");		myWidth=	780;		myHeight=	screen.height-100;					myLeft= (6*(screen.width-myWidth))/16;			myTop= (7*(screen.height-myHeight))/16;					resizeTo( myWidth, myHeight);		moveTo( myLeft, myTop );		location="1.html";	//	alert("exiting: setBlogWindow");	}		function setProjectWindow()	{	//	alert("setPoemsWindow");		myWidth=	820;		myHeight=	540;					myLeft=3*(screen.width-myWidth)/8;		myTop=3*(screen.height-myHeight)/8;		resizeTo( myWidth, myHeight);		moveTo( myLeft, myTop );		location="2.html";	}		function setMiscWindow()	{	//	alert("setMiscWindow");		myWidth=	740;			myHeight=	510;				myleft= (7*(screen.width-myWidth))/16;		mytop= (7*(screen.height-myHeight))/16;						//	myLeft=(screen.width-myWidth)/2;	//	myTop=3*(screen.height-myHeight)/4;		resizeTo( myWidth, myHeight);		moveTo( myLeft, myTop );		location="3.html";	}		function setRsvpWindow()	{	//	alert("setRsrcWindow");		myWidth=	860;		myHeight=	screen.height-80;					myLeft=(screen.width-myWidth)/2;		myTop=3*(screen.height-myHeight)/4;		resizeTo( myWidth, myHeight);		moveTo( myLeft, myTop );		location="4.html";	}				function setLocalWindow()	{	//	alert("setMiscWindow");		myWidth=	760;			myHeight=	540;				myleft= (7*(screen.width-myWidth))/16;		mytop= (7*(screen.height-myHeight))/16;						//	myLeft=(screen.width-myWidth)/2;	//	myTop=3*(screen.height-myHeight)/4;		resizeTo( myWidth, myHeight);		moveTo( myLeft, myTop );		location="5.html";	}				function makeIndex(select)	{	//	alert('inside: makeIndex; select= '+select);		var pageLimit=4;		if( local ) pageLimit=6;				var indexString="&nbsp;&mdash;&nbsp;";		for( i=0; i<=pageLimit; i++)		{			if( i==select ) 				indexString=indexString+makeNullLink(i);			else	indexString=indexString+makeLink(i);			indexString+="&nbsp;&mdash;&nbsp;";		}	//	alert('inside: makeIndex; indexString= '+indexString);		return(indexString);	}		function getBlurb(index)	{		var blurb;		if (	index==0 ) 			return("cover");		if (	index==1 ) 			return("the innerlea blog");		if (	index==2 ) 			return("project list");		if (	index==3 ) 			return("misc");		if (	index==4 ) 			return("rsvp");		if (	index==5 ) 			return("local");		if (	index==6 ) 			return("links & grants");		return("error");	}		function getWinFunc(index)	{		var blurb;		if (	index==0 ) 			return("setCoverWindow");		if (	index==1 ) 			return("setBlogWindow");		if (	index==2 ) 			return("setProjectWindow");		if (	index==3 ) 			return("setMiscWindow");		if (	index==4 ) 			return("setRsrcWindow");		if (	index==5) 			return("setLocalWindow");		return("error");	}		function makeLink(index)	{		var blurb;		var theLink='<a name="#"  href="'+index+'.html" ';			//	if(index==1)	//	{			theLink='<a name="#"  href="'+index+'.html" onClick="'+getWinFunc(index)+'();"';	//	}							//	alert('inside: makeLink; theLink= '+theLink);		blurb= getBlurb(index);		theLink += ' title="'+blurb+'" ';		theLink+= " >  "+ blurb+" <\/a>";		//	if(index==1)	//	alert('inside: makeLink; theLink= '+theLink);		return(theLink);	}		function makeNullLink(index)	{		blurb= getBlurb(index);		var theLink='<span style="font-size:21px">'+blurb+"<\/span>";		return(theLink);	}