//------------------------------------------------------------------------------------------

function onLink(theLink, theColor) //switch link color on mouse over (not available for netscape)
{
    if(document.layers) 
    {              
              
    } else {             
             theOldLinkColor=document.all[theLink].style.color
             document.all[theLink].style.color=theColor;
			
			 
   }                
}

//------------------------------------------------------------------------------------------

function offLink(theLink) //switch link color back on mouse out  (not available for netscape)
{
    if(document.layers) 
    {              
              
    } else {             
             document.all[theLink].style.color=theOldLinkColor; 
   }                
}

//------------------------------------------------------------------------------------------

function onBorder(theParagraph, theColor) //switch link paragraph border color on mouse over (not available for netscape)
{
    if(document.layers) 
    {              
              
    } else {             
			 theOldBorderColor=document.all[theParagraph].style.borderColor;
			 //document.all[theLink].style.borderStyle="solid"; 
			 //document.all[theLink].style.borderWidth="thin";
	         document.all[theParagraph].style.borderColor=theColor;
			 
   }                
}

//------------------------------------------------------------------------------------------

function offBorder(theParagraph) //switch link paragraph border color back on mouse out  (not available for netscape)
{
    if(document.layers) 
    {              
              
    } else {             
			 document.all[theParagraph].style.borderColor=theOldBorderColor;
   }                
}

//------------------------------------------------------------------------------------------

function onCell(theCell, theColor) //switch table cell background color on mouse over (not available for netscape)
{
    if(document.layers) 
    {              
              
    } else {          
             theCellColor=document.all[theCell].style.backgroundColor;
             document.all[theCell].style.backgroundColor=theColor;
   }                
}

//------------------------------------------------------------------------------------------

function offCell(theCell) //switch table cell background color back on mouse out  (not available for netscape)
{
    if(document.layers) 
    {              
              
    } else {             
             document.all[theCell].style.backgroundColor=theCellColor; 
   }                
}
