﻿if(document.getElementById) { 
function show($elm) {
document.getElementById($elm).style.display="block";
}
function hide($elm) {
document.getElementById($elm).style.display="none";
}
function triup($elm2) {
document.getElementById($elm2).style.backgroundColor="#8ca38e";
document.getElementById($elm2).style.borderColor="#8ca38e #8ca38e #8ca38e #2a003c";
}
function tridown($elm2) {
document.getElementById($elm2).style.backgroundColor="#2a003c";
document.getElementById($elm2).style.borderColor="#2a003c #8ca38e #8ca38e #8ca38e";
}
}