//<title>HyperMultiMedia - Images of work on this site. Message&lt;=&gt;Users </title>


	var zImageName;
	var a; 
	var HTMLStr;
	var TotalMenu = 25;
	var ImageRef  = new Array(24);
	var ImageHref  = new Array(24);
	var ImageTitle  = new Array(24);

function imgStart()
{

ImageRef[0] = "zlogo.jpg";		ImageHref[0] = "../Logo/LOGO.WRL";			ImageTitle[0] = "HyperMultiMedia.com Logo";
ImageRef[1] = "zlogo1.jpg";		ImageHref[1] = "../Logo/LOGO.WRL";			ImageTitle[1] = "HyperMultiMedia.com Logo";
ImageRef[2] = "zlogo3.jpg";		ImageHref[2] = "../Logo/LOGO.WRL";			ImageTitle[2] = "HyperMultiMedia.com Logo";
ImageRef[3]="zlogo4.jpg";		ImageHref[3] = "../Logo/LOGO.WRL";			ImageTitle[3] = "HyperMultiMedia.com Logo";
ImageRef[4]="zlogo5.jpg";		ImageHref[4] = "../Logo/LOGO.WRL";			ImageTitle[4] = "HyperMultiMedia.com Logo";
ImageRef[5]="zlogo6.jpg";		ImageHref[5] = "../Logo/LOGO.WRL";			ImageTitle[5] = "HyperMultiMedia.com Logo";
ImageRef[6]="zAll1.jpg";		ImageHref[6] = "../Chapter3/Sun2All.wrl";		ImageTitle[6] = "HyperMultiMedia.com Sun2All";
ImageRef[7]="zAll2.jpg";		ImageHref[7] = "../Chapter3/Sun2All.wrl";		ImageTitle[7] = "HyperMultiMedia.com Sun2All";
ImageRef[8]="zAll3.jpg";		ImageHref[8] = "../Chapter3/Sun2All.wrl";		ImageTitle[8] = "HyperMultiMedia.com VRBLKS";
ImageRef[9]="zblks1.jpg";		ImageHref[9] = "../Blocks/VRBLKS.WRL";		ImageTitle[9] = "HyperMultiMedia.com VRBLKS";
ImageRef[10]="zMat5.jpg";		ImageHref[10] = "../Chapter3/Material2.wrl";	ImageTitle[10] = "HyperMultiMedia.com Material";
ImageRef[11]="zrock1.jpg";		ImageHref[11] = "../Space/ROCKET.WRL";		ImageTitle[11] = "HyperMultiMedia.com ROCKET";
ImageRef[12]="zrock2.jpg";		ImageHref[12] = "../Space/ROCKET.WRL";		ImageTitle[12] = "HyperMultiMedia.com ROCKET";
ImageRef[13]="zrock3.jpg";		ImageHref[13] = "../Space/ROCKET.WRL";		ImageTitle[13] = "HyperMultiMedia.com ROCKET";
ImageRef[14]="zcoordInt11a.jpg";	ImageHref[14] = "../Chapter3/CoordInt.wrl";	ImageTitle[14] = "HyperMultiMedia.com CoordInto";
ImageRef[15]="zcoordInt11b.jpg";	ImageHref[15] = "../Chapter3/CoordInt.wrl";	ImageTitle[15] = "HyperMultiMedia.com CoordInt";
ImageRef[16]="zcoordInt12a.jpg";	ImageHref[16] = "../Chapter3/CoordInt.wrl";	ImageTitle[16] = "HyperMultiMedia.com CoordInt";
ImageRef[17]="zcoordInt2.jpg";	ImageHref[17] = "../Chapter3/CoordInt2.wrl";	ImageTitle[17] = "HyperMultiMedia.com CoordInt";
ImageRef[18]="zcoordInt3.jpg";	ImageHref[18] = "../Chapter3/CoordInt2.wrl";	ImageTitle[18] = "HyperMultiMedia.com CoordInt";
ImageRef[19]="zcoordInt5.jpg";	ImageHref[19] = "../Chapter3/CoordInt2.wrl";	ImageTitle[19] = "HyperMultiMedia.com CoordInt";
ImageRef[20]="zcoordInt6.jpg";	ImageHref[20] = "../Chapter3/CoordInt2.wrl";	ImageTitle[20] = "HyperMultiMedia.com CoordInt";
ImageRef[21]="zcoordInt7.jpg";	ImageHref[21] = "../Chapter3/CoordInt2.wrl";	ImageTitle[21] = "HyperMultiMedia.com CoordInt";
ImageRef[22]="zextru111.jpg";		ImageHref[22] = "../Chapter3/ext_orig.wrl";	ImageTitle[22] = "HyperMultiMedia.com ext_orig";
ImageRef[23]="zextru1.jpg";		ImageHref[23] = "../Chapter3/ext_new.wrl";	ImageTitle[23] = "HyperMultiMedia.com ext_orig";
ImageRef[24]="zextru11a.jpg";		ImageHref[24] = "../Chapter3/ext_new.wrl";	ImageTitle[24] = "HyperMultiMedia.com ext_orig";


	document.write("<SPAN ID='StartStuff' STYLE='display:none;'></SPAN>");

	HTMLStr = 
		"<DIV ID='iddivImage' class='divImage' WIDTH=100%>";
	for (count = 0; count < TotalMenu; count++) {
		imageNumber="I_" + count ;
		zImageName=ImageRef[count];
		//alert(zImageName);
		HTMLStr += 
		"<A href='#" + count + "'" + 
		"onMouseOver='upSize(" + imageNumber + "," + count + ")'" +
		"onMouseOut='downSize(" + imageNumber + ")'" +
		"onClick='showOrig(" + imageNumber + "," + count + ")'" +
		"title='" + ImageTitle[count] + "'" +
		">" +  
		"<IMG ID='" + imageNumber + "' CLASS='images' src='" + zImageName + "'>" +
		"</A>";
	}
}

function zimages()
{
	HTMLStr += "</DIV>";
	document.write(HTMLStr);
picWindow=window.open(ImageRef[0] ,'JavaScriptIt','toolbar=0, onBlur=self.focus title=hypermultimedia.com location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=1, copyhistory=0, width=270, height=270');

}

function upSize(zimageNumber,zcount) 
{
 	zimageNumber.style.width="144";
 	zimageNumber.style.height="144";
 	openPicWin(zcount);
}

function showOrig(zimageNumber,zcount) 
{
 	zimageNumber.style.width="144";
 	zimageNumber.style.height="144";
 	openPicWin2(zcount);
}

function downSize(zimageNumber) 
{
	zimageNumber.style.width="128";
	zimageNumber.style.height="128";
}

function openPicWin(zcount) 
{
//	alert(zcount);
	picWindow=window.open(ImageRef[zcount],'JavaScriptIt', 'toolbar=0, onBlur=self.focus title=hypermultimedia.com location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=1, copyhistory=0, width=270, height=270');
}

function openPicWin2(zcount) 
{
//	alert(zcount);
	picWindow=window.open(ImageHref[zcount],'JavaScriptIt','toolbar=0, onBlur=self.focus title=hypermultimedia.com location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=1, copyhistory=0, width=270, height=270');
}