function goLite(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#CC5533";
   window.document.forms[FRM].elements[BTN].style.borderTopColor = "#666666";
   window.document.forms[FRM].elements[BTN].style.borderBottomColor = "#666666";
}
function goDim(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#333333";
   window.document.forms[FRM].elements[BTN].style.borderTopColor = "#F69100";
   window.document.forms[FRM].elements[BTN].style.borderBottomColor = "#F69100";
}
function a_switch(){
    if(document.getElementById('a1').style.display == 'none'){
	document.getElementById('a1').style.display = 'block';
	document.getElementById('p_m').src = 'img/minus.gif';
    }
    else{
	document.getElementById('a1').style.display = 'none';
	document.getElementById('p_m').src = 'img/plus.gif';
    }
}
function ipc_switch(){
    if(document.getElementById('ipc_price').style.display == 'none'){
	document.getElementById('ipc_price').style.display = 'block';
	document.getElementById('ipc_m').src = 'img/minus.gif';
    }
    else{
	document.getElementById('ipc_price').style.display = 'none';
	document.getElementById('ipc_m').src = 'img/plus.gif';
    }
}
