<!--
function fixFlix(){
var fvElem = document.getElementById('fvCollTableElem');
fvElem.style.height=flixville_table_height;
fvElem.style.width=flixville_table_width;

fvElem.style.borderColor=flixville_table_border_color;
fvElem.style.borderStyle=flixville_table_border_style;
fvElem.style.borderWidth=flixville_table_border_width;

fvElem.style.color=flixville_table_font_color;
fvElem.style.fontSize=flixville_table_font_size;
fvElem.style.fontFamily=flixville_table_font_family;
fvElem.style.fontWeight=flixville_table_font_weight;

var myTrs = fvElem.getElementsByTagName('tr');
var titleTr = document.getElementById('fvTableTtl');
var titleTrOpp = document.getElementById('fvTableTtlOpp');
var colHdr = document.getElementById('fvColHdr');
var endTr = myTrs[myTrs.length-1];

titleTr.style.color = flixville_table_title_fontcolor;
titleTr.style.fontSize = flixville_table_title_fontsize;
titleTr.style.fontWeight = flixville_table_title_fontweight;
titleTr.style.backgroundColor = flixville_table_title_backgroundcolor;

if(titleTrOpp){
titleTrOpp.style.backgroundColor = flixville_table_title_opp_backgroundcolor;
var ttlAs=titleTrOpp.getElementsByTagName('a');
ttlAs[0].style.color=flixville_href_fontcolor;
ttlAs[0].style.textDecoration=flixville_href_textdeco;
}//end if(titleTrOpp)

if(colHdr){
var startTr = 2;
colHdr.style.backgroundColor = flixville_column_header_backgroundcolor;
colHdr.style.color = flixville_column_header_fontcolor;
}//end if(colHdr)
else{
var startTr = 1;
}

endTr.style.backgroundColor = flixville_footer_backgroundcolor;

var curTr,curTd,curA,myAs
for(var i=startTr;i<myTrs.length-1;i++){
	curTr = myTrs[i];
	if(i%2==0){
	curTr.style.backgroundColor = flixville_row_even_backgroundcolor;
	}else{
	curTr.style.backgroundColor = flixville_row_odd_backgroundcolor;
	}
	curTr.style.color=flixville_table_font_color;
}//end for(var i=2;i<myTrs.length-1;i++)

if(titleTrOpp){
var firstA=1;
}//end if(titleTrOpp)
else{
var firstA=0;
}//end else

var myAs = fvElem.getElementsByTagName('a');
for(var i=firstA; i<myAs.length;i++){
	curA = myAs[i];
	curA.style.color=flixville_href_fontcolor;
	curA.style.fontSize=flixville_href_fontsize;
	curA.style.fontWeight=flixville_href_fontweight;
	curA.style.textDecoration=flixville_href_textdeco;
}//end for(var i=1; i<myAs.length;i++)
return true;
}//end function fixFlix()
fixFlix();
//-->