function stretchToTallest(divsToStretch,minimumHeight){var maxHeight=0;for(i=0;i<divsToStretch.divs.length;i++){document.getElementById(divsToStretch.divs[i].div).style.height='auto';if(document.getElementById(divsToStretch.divs[i].div).offsetHeight>maxHeight){maxHeight=document.getElementById(divsToStretch.divs[i].div).offsetHeight;}}
if(maxHeight<minimumHeight){maxHeight=minimumHeight;}
for(i=0;i<divsToStretch.divs.length;i++){document.getElementById(divsToStretch.divs[i].div).style.height=(maxHeight+"px");}}
function changeStyleClass(elementId,className){document.getElementById(elementId).className=className;}
function writeStyleTags(text){document.writeln('<style type="text/css">');document.writeln(text);document.writeln('</style>');}
function writeIEStyle(){writeStyleTags('#selectSearch{filter:revealTrans;}');}
function writeFFStyle(){writeStyleTags('*{-moz-box-sizing:border-box;}');}