 function SetImageInfo(ImageVarName) {
   		//pass in the image # according to the placement on the page
   		
   		document.images[ImageVarName].alt = eval(ImageAlt)
   		document.images[ImageVarName].Name = eval(ImageDesc)
   		
   	    //end of function
   	    }

	function SetImageSource(ImageVarName) {
     //pass in the image # according to placement on the page
		var strName = ImageVarName;
		alert(eval('ImageVarName'));

		if (parent.gCurrentImage != strName) {
			document.images[strName].src = eval(ImageVarName + ".src");
			//document.images[strName].Name = "Shibori Image"
			//document.images[strName].alt = "Arashi"
			//document.images[strName].height = "260"
			//document.images[strName].width = "180"
						}
	 } 	//end of function


	function LoadIt(ImagePosition) {
		//load the image into memory
		setImageSource(ImagePosition)

		}

	function WindowStatusIt() {
		//load the image into memory
		window.status = eval('ProcessDesc');
		}


	function WindowStatusItType(TypeOfWork) {

		//change the reference status
		var StatusType
		switch (TypeOfWork)
	{                             //start of switch statement
		case "Flowers" : //
		{
			StatusType = " Flowers - All shown for their unique beauty." ;
			break;
		}
		case "Abstract" : //
		{
			StatusType = " Unique abstract patterns of different colors and overlays." ;
			break;
		}
		case "Butterflies" : //
		{
			StatusType = " Butterflies - gives a sense of pattern floating past." ;
			break;
		}
		case "Abstra" : //
		{
			StatusType = " Abstract - Hints of other images." ;
			break;
		}
		case "Stripes" ://
		{
			StatusType =  " Arashi Stripes  - Not every stripe is the same." ;
			break;
		}
		case "Glass" ://
		{
			StatusType =  " Stained Glass - Bright colors and vivid designs. " ;
			break;
		}
		case "Oceans" ://
		{
			StatusType =  " Oceans Batik - The ocean in a constant flowing state. " ;
			break;
		}

       case "Diamonds" :// when the calculator is in a divide state
		{
			StatusType =  " Diamonds  - Capturing that jewel like sparkle." ;
			break;
		}

       case "Waterfalls" ://
		{
			StatusType =  " Waterfalls - Flowing down a mountain side. " ;
			break;
		}
		
		 case "Other" ://
		{
			StatusType =  " Other exciting patterns available! " ;
			break;
		}

	 }  ///end of switch statement


	window.status = eval('StatusType');  //put out the window status
	}   //end of function
 </script>
