// JavaScript Document

<!--
function bcolor(bcol,tcol,d_name)
{
if (document.all)
{
 var thestyle= eval ('document.all.'+d_name+'.style');
 thestyle.backgroundColor=bcol;
 thestyle.color=tcol;
 }
}
//-->
function bgChange(d_name,cLoc)
{
 var thestyle= eval ('document.all.'+d_name+'.style');
 thestyle.backgroundImage=cLoc;
}
<!--
function pictureHighlight(bcol,d_name,borderType,filterType)
{
if (document.all)
{
 var thestyle= eval ('document.all.'+d_name+'.style');
 thestyle.borderColor=bcol;
 thestyle.borderStyle=borderType;
 thestyle.filter=filterType;
 }
}
//-->
<!--
function pictureHighlightRange(bcol,d_name,borderType,filterType)
{
if (document.all)
{
 var thestyle= eval ('document.all.'+d_name+'.style');
 if (bcol=="#F8F8F8")
 {
 thestyle.borderColor="#CCCCCC";
 }
 else
 {
 thestyle.borderColor=bcol;
 }
 thestyle.borderStyle=borderType;
 thestyle.filter=filterType;
 var therange= eval ('document.all.'+d_name+'Header.style');
 therange.backgroundColor=bcol;
 therange.filter=filterType;
 }
}
//-->
<!--
function pictureHighlightNAV(bcol,d_name,borderType,filterType)
{
if (document.all)
 {
 var str = (document.URL);
 //alert(str);
 if (str.match("index.asp"))
 	 {
	 var thestyle= eval ('document.all.'+d_name+'.style');
	 var thestyleNAV= eval ('document.all.NAV'+d_name+'.style');
	 
	 thestyle.borderColor=bcol;
	 thestyle.borderStyle=borderType;
	 thestyle.filter=filterType;
	 
	 thestyleNAV.borderColor=bcol;
	 thestyleNAV.borderStyle=borderType;
	 thestyleNAV.filter=filterType;
	 }
 else
 	{
	 //var thestyle= eval ('document.all.'+d_name+'.style');
	 var thestyleNAV= eval ('document.all.NAV'+d_name+'.style');
	 
	 //thestyle.borderColor=bcol;
	 //thestyle.borderStyle=borderType;
	 //thestyle.filter=filterType;
	 
	 thestyleNAV.borderColor=bcol;
	 thestyleNAV.borderStyle=borderType;
	 thestyleNAV.filter=filterType;
	}
 }
}


//-->
