//--------------------------------------------------------------
function awChangeBGColor(ID, color, textcolor, ID2) 
{ 
    if  (document.all) 
    {
		document.all[ID].style.backgroundColor = color;
		document.all[ID2].style.color = textcolor;

		return;
    }
    if  (document.getElementById) 
    {
		document.getElementById(ID).style.backgroundColor = color;
		document.getElementById(ID2).style.color = textcolor;
		return;
    }
}
    
//--------------------------------------------------------------
function awCnangeImage(ID, imgPath) 
{
    if (document.images) {
    imgFile = rootpath + imgPath; 
	document[ID].src = imgFile;
    }
}