function doSection(secOpenID, imgOpenID, imgType){
var secNum = document.getElementById(secOpenID);
var ImgID = document.getElementById(imgOpenID);
if (secNum.className=='off'){
secNum.className='on';
if(ImgID){
if (imgType == 1) {
ImgID.src='http://www.reliasoft.com/images/highlights_arrow_up.gif';
} else if (imgType == 2) {
ImgID.src='http://www.reliasoft.com/images/highlights_arrow_up.gif';
} else if (imgType == 3) {
ImgID.src='http://www.reliasoft.com/images/highlights_arrow_up.gif';
} else {
ImgID.src='http://www.reliasoft.com/images/highlights_arrow_up.gif';
}
}
}
else{
secNum.className='off';
if(ImgID){
if (imgType == 1){
ImgID.src='http://www.reliasoft.com/images/highlights_arrow_down.gif';
} else if (imgType == 2) {
ImgID.src='http://www.reliasoft.com/images/highlights_arrow_down.gif';
} else if (imgType == 3) {
ImgID.src='http://www.reliasoft.com/images/highlights_arrow_down.gif';
} else {
ImgID.src='http://www.reliasoft.com/images/highlights_arrow_down.gif';
}
}
}
}