		//HTML inline style tags commented out.
		//<SCRIPT LANGUAGE="JavaScript">
		//Optimized for IE
		//<!-- Hide Code 
		window.resizeTo(800,700);
		pBlue= new Image(600,600)
		pBlue.src = "./Images/paletteDali_B.jpg"

		pRed= new Image(600,600)
		pRed.src = "./Images/paletteDali_R.jpg"
	
		pGreen= new Image(600,600)
		pGreen.src = "./Images/paletteDali_G.jpg"

		pYellow= new Image(600,600)
		pYellow.src = "./Images/paletteDali_Y.jpg"
		
		pMain= new Image(600,600)
		pMain.src = "./Images/paletteDali.jpg"
				
		//this function doesn't work; I think it has something to do with the document.all property.
		//Ideally, it will a) work, and b) be called from the SwapOut() & SwapBack() functions, so
		//that in index.html and newDali.html, only 1 function needs to be called. JS 1/16/2004 1:24PM
		function changeLink(uName, flip)//Changes link appearance
		{
			for(i = 0; i < document.all.length; i++)
			{
				//alert(document.all[i].style.fontFamily)//print needed info here	
				if(document.all[i].name == uName)
				{	
					with(document.all[i].style)
					{
						if(flip > 0)
						{
							void(textDecoration='underline')
							void(fontFamily='monotype corsiva')
							void(fontSize='16pt')
						}
						else
						{
							void(textDecoration='')
							void(fontFamily='')
							void(fontSize='')
		
						}	
					}	
				}	
			}	
		}

		function SwapOut(iName) {
			document.paletteDali0.src = iName; 
			return true;
		}
		function SwapBack() {
			document.paletteDali0.src = pMain.src; return true;
		}
		
		// End Hiding -->
		//</SCRIPT>  
